This commit is contained in:
tiago.kayaya
2021-09-21 14:28:53 +01:00
parent e07695f238
commit ccd211140a
2 changed files with 8 additions and 3 deletions
@@ -111,8 +111,12 @@ export class ChatPopoverPage implements OnInit {
}
async openChangeGroupName(){
this.popoverController.dismiss('edit');
this.modalController.dismiss('edit');
if( window.innerWidth < 701){
this.popoverController.dismiss('edit');
}
else{
this.modalController.dismiss('edit');
}
}
}