We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
cssVarText
const
1 parent 0f654f6 commit 6f9d871Copy full SHA for 6f9d871
packages/runtime-dom/src/modules/style.ts
@@ -24,7 +24,7 @@ export function patchStyle(el: Element, prev: Style, next: Style) {
24
if (isCssString) {
25
if (prev !== next) {
26
// #9821
27
- let cssVarText = (style as any)[CSS_VAR_TEXT]
+ const cssVarText = (style as any)[CSS_VAR_TEXT]
28
if (cssVarText) {
29
;(next as string) += ';' + cssVarText
30
}
0 commit comments