diff --git a/src/components/system/Microtab.vue b/src/components/system/Microtab.vue index 4928a37..a6a4747 100644 --- a/src/components/system/Microtab.vue +++ b/src/components/system/Microtab.vue @@ -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;