File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ import {
24
24
import MediaRange from "@ui5/webcomponents-base/dist/MediaRange.js" ;
25
25
import { getI18nBundle } from "@ui5/webcomponents-base/dist/i18nBundle.js" ;
26
26
import type I18nBundle from "@ui5/webcomponents-base/dist/i18nBundle.js" ;
27
+ import { getScopedVarName } from "@ui5/webcomponents-base/dist/CustomElementsScope.js" ;
27
28
import "@ui5/webcomponents-icons/dist/slim-arrow-up.js" ;
28
29
import "@ui5/webcomponents-icons/dist/slim-arrow-down.js" ;
29
30
import {
@@ -812,8 +813,8 @@ class TabContainer extends UI5Element {
812
813
}
813
814
814
815
tab . _style = {
815
- "--_ui5-tab-indentation-level" : level ,
816
- "--_ui5-tab-extra-indent" : extraIndent ? 1 : null ,
816
+ [ getScopedVarName ( "--_ui5-tab-indentation-level" ) ] : level ,
817
+ [ getScopedVarName ( "--_ui5-tab-extra-indent" ) ] : extraIndent ? 1 : null ,
817
818
} ;
818
819
} ) ;
819
820
}
You can’t perform that action at this time.
0 commit comments