Browse Source

Merge pull request #5705 from nith2001/5648-filter-group-boolean-bug

fix(nocodb): Fixed filtering boolean visual bug
pull/5774/head
Raju Udava 1 year ago committed by GitHub
parent
commit
fe14175fc0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      packages/nc-gui/components/smartsheet/toolbar/ColumnFilter.vue

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

@ -225,7 +225,8 @@ defineExpose({
/>
<span v-else :key="`${i}dummy`" />
<div :key="`${i}nested`" class="flex">
<span v-if="!i" class="flex items-center">{{ $t('labels.where') }}</span>
<div v-else :key="`${i}nested`" class="flex bob">
<a-select
v-model:value="filter.logical_op"
:dropdown-match-select-width="false"

Loading…
Cancel
Save