Fix tab buttons not getting style refs
This commit is contained in:
parent
eec494370c
commit
86688b5bb1
1 changed files with 1 additions and 1 deletions
|
@ -115,7 +115,7 @@ export default defineComponent({
|
||||||
|
|
||||||
function gatherButtonProps(button: GenericTabButton) {
|
function gatherButtonProps(button: GenericTabButton) {
|
||||||
const { display, style, classes, glowColor, visibility } = button;
|
const { display, style, classes, glowColor, visibility } = button;
|
||||||
return { display, style, classes, glowColor, visibility };
|
return { display, style: unref(style), classes, glowColor, visibility };
|
||||||
}
|
}
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
|
Loading…
Reference in a new issue