Skip to content

Commit

Permalink
fix: filter change icon to be shown only when the filter changes
Browse files Browse the repository at this point in the history
Signed-off-by: greta <gretadoci@gmail.com>
  • Loading branch information
GretaD committed Jun 3, 2024
1 parent 3b41b53 commit 2e0ec87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/SearchMessages.vue
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ export default {
},
filterChanged() {
return Object.entries(this.filterData).filter(([key, val]) => {
return val !== ''
return val !== '' && val !== null && val.length > 0
}).length > 0
},
searchBody() {
Expand Down

0 comments on commit 2e0ec87

Please sign in to comment.