We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58c20ec commit 862aa63Copy full SHA for 862aa63
ui/src/components/QIconPicker.js
@@ -58,10 +58,7 @@ export default {
58
if (icons) {
59
if (this.tags !== void 0 && this.tags !== '' && this.tags !== null && this.tags.length > 0) {
60
icons = icons.filter(icon => {
61
- const t = icon.tags.filter(tag => this.tags.includes(tag))
62
- if (t.length > 0) {
63
- return icon
64
- }
+ return icon.tags.filter(tag => this.tags.includes(tag)).length > 0
65
})
66
}
67
if (this.filter !== void 0 && this.filter !== '' && this.filter !== null) {
0 commit comments