mirror of
https://github.com/avatao-content/frontend-tutorial-framework
synced 2024-12-05 02:21:31 +00:00
Fix bug where layout changes wouldn't scroll messages to bottom
This commit is contained in:
parent
0019683b21
commit
e951c5cb6f
@ -55,7 +55,10 @@ export class DashboardComponent implements OnInit, OnDestroy {
|
|||||||
}
|
}
|
||||||
|
|
||||||
subscribeResizeOnLayoutChange() {
|
subscribeResizeOnLayoutChange() {
|
||||||
this.configService.layout.subscribe(() => this.emitResizeEvent());
|
this.configService.layout.subscribe(() => {
|
||||||
|
this.emitResizeEvent();
|
||||||
|
setTimeout(() => this.scrollMessagesToBottom(), 0);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
initCommandHandling() {
|
initCommandHandling() {
|
||||||
@ -89,7 +92,6 @@ export class DashboardComponent implements OnInit, OnDestroy {
|
|||||||
|
|
||||||
setLayout(layout: string) {
|
setLayout(layout: string) {
|
||||||
this.layout.next(layout);
|
this.layout.next(layout);
|
||||||
this.emitResizeEvent();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
emitResizeEvent() {
|
emitResizeEvent() {
|
||||||
|
Loading…
Reference in New Issue
Block a user