Fix es-lint issue and remove console log
This commit is contained in:
parent
885d9d4f88
commit
dc5d922469
|
|
@ -55,10 +55,10 @@
|
||||||
|
|
||||||
computed: {
|
computed: {
|
||||||
isActive() {
|
isActive() {
|
||||||
console.log(this.instrumentFilter.currentFilter);
|
|
||||||
if (!this.instrumentFilter.currentFilter) {
|
if (!this.instrumentFilter.currentFilter) {
|
||||||
return this.type === '';
|
return this.type === '';
|
||||||
}
|
}
|
||||||
|
// eslint-disable-next-line
|
||||||
const [_, identifier] = this.instrumentFilter.currentFilter.split(':');
|
const [_, identifier] = this.instrumentFilter.currentFilter.split(':');
|
||||||
console.log(identifier, this.type);
|
console.log(identifier, this.type);
|
||||||
return this.type === identifier;
|
return this.type === identifier;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue