fix column shifting on autogrow

This commit is contained in:
Nicolas Constant 2019-08-15 22:52:04 -04:00
parent 733c21af7d
commit 716819524b
No known key found for this signature in database
GPG Key ID: 1E9F677FB01A5688
1 changed files with 1 additions and 1 deletions

View File

@ -616,7 +616,7 @@ export class CreateStatusComponent implements OnInit, OnDestroy {
setTimeout(() => {
if (this.checkVisible(this.footerElement.nativeElement)) {
this.footerElement.nativeElement.scrollIntoView({ behavior: 'auto', block: 'nearest', inline: 'start' });
this.footerElement.nativeElement.scrollIntoViewIfNeeded({ behavior: 'instant', block: 'end', inline: 'start' });
}
}, 0);
}