Skip to content

Commit

Permalink
work for #6205 fix mobile popup in angular
Browse files Browse the repository at this point in the history
  • Loading branch information
OlgaLarina committed Aug 17, 2023
1 parent f60ced1 commit c49288e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export class PopupBaseContainerComponent<T extends PopupBaseViewModel = PopupBas
protected override afterUpdate(key?: string): void {
super.afterUpdate(key);

if(!!key && key === "isVisible") {
if(!!key && (key === "isVisible" || key === "top")) {
if (!this.prevIsVisible && this.model.isVisible) {
this.model.updateOnShowing();
}
Expand Down

0 comments on commit c49288e

Please sign in to comment.