Skip to content

Commit

Permalink
fix: handle checkbox quick filter
Browse files Browse the repository at this point in the history
  • Loading branch information
shariquerik committed Jan 22, 2025
1 parent eb296d5 commit 4c797f6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion frontend/src/components/ViewControls.vue
Original file line number Diff line number Diff line change
Expand Up @@ -608,8 +608,10 @@ const quickFilterList = computed(() => {
)
return
filter['value'] = value[1]?.replace(/%/g, '')
} else if (typeof value == 'boolean') {
filter['value'] = value
} else {
filter['value'] = value.replace(/%/g, '')
filter['value'] = value?.replace(/%/g, '')
}
}
})
Expand Down

0 comments on commit 4c797f6

Please sign in to comment.