Fix es-lint issue and remove console log

This commit is contained in:
Ramon Wenger 2021-11-01 12:05:59 +01:00
parent 885d9d4f88
commit dc5d922469
1 changed files with 1 additions and 1 deletions

View File

@ -55,10 +55,10 @@
computed: {
isActive() {
console.log(this.instrumentFilter.currentFilter);
if (!this.instrumentFilter.currentFilter) {
return this.type === '';
}
// eslint-disable-next-line
const [_, identifier] = this.instrumentFilter.currentFilter.split(':');
console.log(identifier, this.type);
return this.type === identifier;