1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-05-23 00:19:40 +00:00

Resolve "Form view"

This commit is contained in:
Bram Wiepjes 2021-07-11 18:02:37 +00:00
parent c3af2a02b9
commit 53ffd8f9c0
128 changed files with 6474 additions and 943 deletions
web-frontend/modules/database/components/row

View file

@ -7,6 +7,9 @@
>
<i class="fas fa-check check"></i>
</div>
<div v-show="touched && !valid" class="error">
{{ error }}
</div>
</div>
</template>
@ -24,6 +27,7 @@ export default {
const oldValue = !!value
const newValue = !value
this.$emit('update', newValue, oldValue)
this.touch()
},
},
}