Browse Source

fix(nc-gui): pass _nested to applyChanges

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

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

@ -98,8 +98,8 @@ watch(
},
)
const applyChanges = async (hookId?: string) => {
await sync(hookId)
const applyChanges = async (hookId?: string, _nested = false) => {
await sync(hookId, _nested)
if (!localNestedFilters.value?.length) return

Loading…
Cancel
Save