1
0
Fork 0
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:
Nigel Gott 2021-04-08 11:37:37 +00:00
parent 816844ea51
commit 9493645920
55 changed files with 1508 additions and 156 deletions
web-frontend/modules/database/components/field

View file

@ -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: {