Browse Source

Merge pull request #3272 from nocodb/fix/gui-v2-webhook-filter

fix(gui-v2): cannot read properties of undefined (reading 'length')
pull/3281/head
Raju Udava 2 years ago committed by GitHub
parent
commit
51e62a58f5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      packages/nc-gui-v2/components/smartsheet-toolbar/ColumnFilter.vue

2
packages/nc-gui-v2/components/smartsheet-toolbar/ColumnFilter.vue

@ -115,7 +115,7 @@ watch(
const applyChanges = async (hookId?: string) => {
await sync(hookId)
if (!nestedFilters.value.length) return
if (!nestedFilters.value?.length) return
for (const nestedFilter of nestedFilters.value) {
if (nestedFilter.parentId) {

Loading…
Cancel
Save