Fix tab buttons not getting style refs

This commit is contained in:
thepaperpilot 2022-05-06 13:32:06 -05:00
parent eec494370c
commit 86688b5bb1

View file

@ -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 {