diff --git a/src/components/Controls/TableRow.vue b/src/components/Controls/TableRow.vue index f9775f0d..76363640 100644 --- a/src/components/Controls/TableRow.vue +++ b/src/components/Controls/TableRow.vue @@ -6,11 +6,12 @@ px-2 border-b hover:bg-gray-50 - h-row-mid group flex items-center justify-center + h-row-mid + relative " > @@ -52,8 +53,9 @@
{{ getErrorString() }}
@@ -97,6 +99,11 @@ export default { doc: this.row, }; }, + computed: { + hasErrors() { + return Object.values(this.errors).filter(Boolean).length; + }, + }, methods: { onChange(df, value) { if (value == null) {