We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28061e3 commit 3a14a0aCopy full SHA for 3a14a0a
packages/core/ui/styling/style-scope.ts
@@ -472,6 +472,9 @@ export class CssState {
472
}
473
474
const matchingSelectors = this._match.selectors.filter((sel) => (sel.dynamic ? sel.match(view) : true));
475
+ if (!matchingSelectors || matchingSelectors.length === 0) {
476
+ return;
477
+ }
478
view._batchUpdate(() => {
479
this.stopKeyframeAnimations();
480
this.setPropertyValues(matchingSelectors);
0 commit comments