From 2affe533216d8c60817f6e439b7d32d56c407e68 Mon Sep 17 00:00:00 2001 From: thepaperpilot Date: Wed, 22 Feb 2023 20:28:46 -0600 Subject: [PATCH] Fix tab buttons not showing glow --- src/features/tabs/TabButton.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/features/tabs/TabButton.vue b/src/features/tabs/TabButton.vue index fcd8942..2b4991f 100644 --- a/src/features/tabs/TabButton.vue +++ b/src/features/tabs/TabButton.vue @@ -50,7 +50,7 @@ export default defineComponent({ const glowColorStyle = computed(() => { const color = unwrapRef(glowColor); - if (color != null) { + if (color == null || color === "") { return {}; } if (unref(floating)) {