2 Commits 9a0e9487e2 ... 5d0f65b388

Author SHA1 Message Date
  Eric Tröbs 5d0f65b388 Merge branch '135-remove-label-function-in-ui' into 'master' 3 years ago
  Eric Tröbs 4ceb9d8108 fix #135 3 years ago
1 changed files with 1 additions and 1 deletions
  1. 1 1
      webui/src/components/media/label-selector.vue

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

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