From 096e7f928c43495fcd7b640ab38397c68240aad6 Mon Sep 17 00:00:00 2001 From: thepaperpilot Date: Sun, 27 Jun 2021 16:59:35 -0500 Subject: [PATCH] Fixed microtabs issue --- src/components/system/Microtab.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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;