Browse Source

feat(nc-gui): disable filter value for blank & notblank filters

pull/5106/head
Wing-Kam Wong 2 years ago
parent
commit
16f9ea265d
  1. 4
      packages/nc-gui/components/smartsheet/toolbar/ColumnFilter.vue

4
packages/nc-gui/components/smartsheet/toolbar/ColumnFilter.vue

@ -261,7 +261,9 @@ defineExpose({
<span
v-if="
filter.comparison_op &&
['null', 'notnull', 'checked', 'notchecked', 'empty', 'notempty'].includes(filter.comparison_op)
['null', 'notnull', 'checked', 'notchecked', 'empty', 'notempty', 'blank', 'notblank'].includes(
filter.comparison_op,
)
"
:key="`span${i}`"
/>

Loading…
Cancel
Save