Eric Tröbs 3 年之前
父節點
當前提交
e5d125232a
共有 1 個文件被更改,包括 1 次插入1 次删除
  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,
         id: null,
         name: 'None'
         name: 'None'
       }, ...this.labels]
       }, ...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: {
   methods: {