Skip to content

Commit

Permalink
fix(table): Fixes an issue with partial keyframes on expandable row.
Browse files Browse the repository at this point in the history
This was quite impossible to reproduce reliably and to be honest, we are not entirely sure if this will fix the problem.
Regarding to this issue in the angular components, this should help though and we were not seeing the error after this fix in our development environment.
angular/components#13970

Fixes APM-276923
  • Loading branch information
tomheller authored and ffriedl89 committed Feb 9, 2021
1 parent 53ebda4 commit 0754baf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ const COLLAPSE_ANIMATE = [
style({ height: 'auto', visibility: 'hidden', offset: 0 }),
style({
height: '0px',
minHeight: '0',
minHeight: '0px',
visibility: 'hidden',
offset: 1,
}),
Expand Down

0 comments on commit 0754baf

Please sign in to comment.