mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-05-07 10:10:56 +00:00
Search in view
This commit is contained in:
parent
816844ea51
commit
9493645920
55 changed files with 1508 additions and 156 deletions
web-frontend/modules/database/components/field
|
@ -37,7 +37,7 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<template v-if="!!values.type">
|
||||
<template v-if="hasFormComponent">
|
||||
<component
|
||||
:is="getFormComponent(values.type)"
|
||||
ref="childForm"
|
||||
|
@ -82,6 +82,9 @@ export default {
|
|||
fieldTypes() {
|
||||
return this.$registry.getAll('field')
|
||||
},
|
||||
hasFormComponent() {
|
||||
return !!this.values.type && this.getFormComponent(this.values.type)
|
||||
},
|
||||
},
|
||||
validations: {
|
||||
values: {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue