fix: handle is nested filter ref is undefined

This commit is contained in:
Pranav C
2026-01-20 11:27:30 +00:00
parent 18bdc6d50e
commit 5d4cc8a2ad

View File

@@ -360,7 +360,7 @@ const applyChanges = async (hookOrColId?: string, nested = false, isConditionSup
if (!localNestedFilters.value?.length) return
for (const nestedFilter of localNestedFilters.value) {
if (nestedFilter.parentId) {
if (nestedFilter?.parentId) {
await nestedFilter.applyChanges(hookOrColId, true, undefined)
}
}