Fix es-lint issue and remove console log
This commit is contained in:
parent
885d9d4f88
commit
dc5d922469
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue