fix(animations): mark actual descendant node as disabled (#26180)

PR Close #26180
This commit is contained in:
JoostK 2018-09-29 15:32:44 +02:00 committed by Miško Hevery
parent 023bd31965
commit df123e0410
1 changed files with 1 additions and 1 deletions

View File

@ -811,7 +811,7 @@ export class TransitionAnimationEngine {
}
this.driver.query(element, DISABLED_SELECTOR, true).forEach(node => {
this.markElementAsDisabled(element, false);
this.markElementAsDisabled(node, false);
});
}