Fixed microtabs issue
This commit is contained in:
parent
ae036225b1
commit
096e7f928c
1 changed files with 2 additions and 1 deletions
|
@ -34,7 +34,8 @@ export default {
|
|||
},
|
||||
microtabs() {
|
||||
return Object.keys(this.tabFamily)
|
||||
.filter(microtab => microtab !== 'activeMicrotab' && this.tabFamily[microtab].unlocked !== false)
|
||||
.filter(microtab =>
|
||||
microtab !== 'activeMicrotab' && this.tabFamily[microtab].isProxy && this.tabFamily[microtab].unlocked !== false)
|
||||
.reduce((acc, curr) => {
|
||||
acc[curr] = this.tabFamily[curr];
|
||||
return acc;
|
||||
|
|
Loading…
Reference in a new issue