UX: fix #2249
This commit is contained in:
parent
05298c2498
commit
08e3c6368a
1 changed files with 1 additions and 1 deletions
|
@ -64,7 +64,7 @@
|
|||
onDestroy(
|
||||
globalFilter.addCallbackAndRun((globalFilter) => {
|
||||
console.log("Global filters are", globalFilter)
|
||||
_globalFilter = globalFilter ?? []
|
||||
_globalFilter = globalFilter?.filter(gf => gf.onNewPoint !== undefined) ?? []
|
||||
})
|
||||
)
|
||||
$: {
|
||||
|
|
Loading…
Reference in a new issue