Resolve "label selection using substrings" Closes #136 See merge request troebs/pycs!123
@@ -52,7 +52,7 @@ export default {
identifier: 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: {