Eric Tröbs 3 năm trước cách đây
mục cha
commit
e5d125232a
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      webui/src/components/media/label-selector.vue

+ 1 - 1
webui/src/components/media/label-selector.vue

@@ -52,7 +52,7 @@ export default {
         id: null,
         name: 'None'
       }, ...this.labels]
-          .filter(l => !this.search || !l.identifier || l.name.toLowerCase().startsWith(search));
+          .filter(l => !this.search || !l.identifier || l.name.toLowerCase().includes(search));
     }
   },
   methods: {