aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorskjnldsv <skjnldsv@protonmail.com>2025-05-21 14:39:51 +0200
committernextcloud-command <nextcloud-command@users.noreply.github.com>2025-05-21 12:44:43 +0000
commit3268899d3d47cb65e62d7e97e740485a29de01d0 (patch)
tree21f146d2a9c6ebb8a71faa7fe4742adc98e7a75d
parentc02e5608ffeb7c14ef08692b5a5b2c00e95b9fb4 (diff)
downloadnextcloud-server-3268899d3d47cb65e62d7e97e740485a29de01d0.tar.gz
nextcloud-server-3268899d3d47cb65e62d7e97e740485a29de01d0.zip
fix(systemtags): case-insensitive search
Signed-off-by: skjnldsv <skjnldsv@protonmail.com>
-rw-r--r--apps/systemtags/src/components/SystemTagPicker.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/systemtags/src/components/SystemTagPicker.vue b/apps/systemtags/src/components/SystemTagPicker.vue
index 601e48ea910..9a3b8e19b68 100644
--- a/apps/systemtags/src/components/SystemTagPicker.vue
+++ b/apps/systemtags/src/components/SystemTagPicker.vue
@@ -241,7 +241,7 @@ export default defineComponent({
}
return this.sortedTags
- .filter(tag => tag.displayName.normalize().includes(this.input.normalize()))
+ .filter(tag => tag.displayName.normalize().toLowerCase().includes(this.input.normalize().toLowerCase()))
},
hasChanges(): boolean {