Fix style attribute not working on tooltips
This commit is contained in:
parent
f70273425e
commit
eb06435821
1 changed files with 2 additions and 2 deletions
|
@ -15,7 +15,7 @@ import {
|
|||
ProcessedComputable
|
||||
} from "util/computed";
|
||||
import { VueFeature } from "util/vue";
|
||||
import { Ref } from "vue";
|
||||
import { Ref, unref } from "vue";
|
||||
import { persistent } from "game/persistence";
|
||||
|
||||
declare module "@vue/runtime-dom" {
|
||||
|
@ -105,7 +105,7 @@ export function addTooltip<T extends TooltipOptions>(
|
|||
},
|
||||
display,
|
||||
classes,
|
||||
style,
|
||||
style: unref(style),
|
||||
direction,
|
||||
xoffset,
|
||||
yoffset,
|
||||
|
|
Loading…
Reference in a new issue