From 86688b5bb1fc61df713eb6be2bd711788f669805 Mon Sep 17 00:00:00 2001 From: thepaperpilot Date: Fri, 6 May 2022 13:32:06 -0500 Subject: [PATCH] Fix tab buttons not getting style refs --- src/features/tabs/TabFamily.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/features/tabs/TabFamily.vue b/src/features/tabs/TabFamily.vue index 4d52ab8..31f6802 100644 --- a/src/features/tabs/TabFamily.vue +++ b/src/features/tabs/TabFamily.vue @@ -115,7 +115,7 @@ export default defineComponent({ function gatherButtonProps(button: GenericTabButton) { const { display, style, classes, glowColor, visibility } = button; - return { display, style, classes, glowColor, visibility }; + return { display, style: unref(style), classes, glowColor, visibility }; } return {