We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49d8c1b commit 0badccbCopy full SHA for 0badccb
apps/web/src/components/core/edit-filters.vue
@@ -467,6 +467,10 @@ export default defineNuxtComponent({
467
mounted() {
468
this.filterOptions = this.columns.map(this.mapAssign)
469
this.fieldType = this.columnsType.find((col) => col.name === this.filter.key)?.type
470
+
471
+ if (!this.fieldType && !this.columnExists(this.filter.key || '') && this.filter.key) {
472
+ this.fieldType = this.comparator?.type ? this.comparator.type[0] : 'text'
473
+ }
474
},
475
})
476
</script>
0 commit comments