From 6d89919e221fd0c8e17a0ffe1e1cd0744d86fd1d Mon Sep 17 00:00:00 2001 From: Gianfranco Frau Date: Fri, 6 Mar 2020 10:22:59 +0100 Subject: [PATCH] fix(interaction.app): fix broken emoji panel --- interaction/app/default/src/app/app.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interaction/app/default/src/app/app.component.ts b/interaction/app/default/src/app/app.component.ts index d5e295a0..a27dfcdf 100644 --- a/interaction/app/default/src/app/app.component.ts +++ b/interaction/app/default/src/app/app.component.ts @@ -13,7 +13,7 @@ interface Dimensions { }) export class AppComponent implements OnInit { - @ViewChild(ChatAreaComponent, {static: true}) chat: ChatAreaComponent; + @ViewChild(ChatAreaComponent, {static: false}) chat: ChatAreaComponent; public messages: Array;