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 6adcc40 commit 4b96d4bCopy full SHA for 4b96d4b
packages/core/ui/styling/style-scope.ts
@@ -473,7 +473,10 @@ export class CssState {
473
474
const matchingSelectors = this._match.selectors.filter((sel) => (sel.dynamic ? sel.match(view) : true));
475
if (!matchingSelectors || matchingSelectors.length === 0) {
476
- return;
+ // Ideally we should return here if there are no matching selectors, however
477
+ // if there are property removals, returning here would not remove them
478
+ // this is seen in STYLE test in automated.
479
+ // return;
480
}
481
view._batchUpdate(() => {
482
this.stopKeyframeAnimations();
0 commit comments