fix: only pass filter string from view to popup

This commit is contained in:
kolaente 2024-10-16 17:18:38 +02:00
parent 3c13d3b635
commit 85823b3e97
No known key found for this signature in database
GPG Key ID: F40E70337AB24C9B
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ const filterFromView = computed(() => {
return
}
const view = project.views.find(v => v.id === props.viewId)
return view?.filter
return view?.filter?.filter
})
</script>