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 404cbf7 commit 647fdf8Copy full SHA for 647fdf8
src/core/components/message/message.ts
@@ -46,11 +46,9 @@ export class CoreMessageComponent implements OnInit {
46
47
protected deleted = false; // Needed to fix animation to void in Behat tests.
48
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
- // }
+ @HostBinding('@coreSlideInOut') get animation(): string {
+ return this.isMine ? '' : 'fromLeft';
+ }
54
55
@HostBinding('class.is-mine') isMine = false;
56
0 commit comments