Skip to content

Commit 647fdf8

Browse files
committed
MOBILE-4442 messages: Recover animation once a bug has been solved
1 parent 404cbf7 commit 647fdf8

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

src/core/components/message/message.ts

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,9 @@ export class CoreMessageComponent implements OnInit {
4646

4747
protected deleted = false; // Needed to fix animation to void in Behat tests.
4848

49-
// @TODO Recover the animation using native css or wait for Angular 13.1
50-
// where the bug https://github.com/angular/angular/issues/30693 is solved.
51-
// @HostBinding('@coreSlideInOut') get animation(): string {
52-
// return this.isMine ? '' : 'fromLeft';
53-
// }
49+
@HostBinding('@coreSlideInOut') get animation(): string {
50+
return this.isMine ? '' : 'fromLeft';
51+
}
5452

5553
@HostBinding('class.is-mine') isMine = false;
5654

0 commit comments

Comments
 (0)