Fix tab buttons not showing glow

This commit is contained in:
thepaperpilot 2023-02-22 20:28:46 -06:00
parent bb234ed852
commit 2affe53321

View file

@ -50,7 +50,7 @@ export default defineComponent({
const glowColorStyle = computed(() => { const glowColorStyle = computed(() => {
const color = unwrapRef(glowColor); const color = unwrapRef(glowColor);
if (color != null) { if (color == null || color === "") {
return {}; return {};
} }
if (unref(floating)) { if (unref(floating)) {