Browse Source

fix abstract type

pull/4425/head
Ekaterina Balakina 2 years ago
parent
commit
fe94f1adcb
  1. 2
      packages/nc-gui/components/smartsheet/toolbar/FilterInput.vue

2
packages/nc-gui/components/smartsheet/toolbar/FilterInput.vue

@ -81,7 +81,7 @@ type FilterType = keyof typeof checkTypeFunctions
const { sqlUi } = $(useProject())
const abstractType = $computed(() => column.value && sqlUi?.getAbstractType(column.value))
const abstractType = $computed(() => (column.value?.dt && sqlUi ? sqlUi.getAbstractType(column.value) : null))
const checkType = (filterType: FilterType) => {
const checkTypeFunction = checkTypeFunctions[filterType]

Loading…
Cancel
Save