chore(collapsible): use string instead of template literal for css
This commit is contained in:
parent
6be72935cd
commit
52618dc539
1 changed files with 1 additions and 1 deletions
|
|
@ -71,7 +71,7 @@ export class CustomCollapsible extends LionCollapsible {
|
|||
if (this._contentHeight === '0px') {
|
||||
return;
|
||||
}
|
||||
['opacity', 'padding', 'max-height'].map(prop => contentNode.style.setProperty(prop, `${0}`));
|
||||
['opacity', 'padding', 'max-height'].map(prop => contentNode.style.setProperty(prop, '0'));
|
||||
await this._waitForTransition({ contentNode });
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue