mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-18 20:47:54 +00:00
Fix
This commit is contained in:
@@ -55,7 +55,7 @@ export class DeplomaOptionsPage implements OnInit {
|
||||
|
||||
await modal.present();
|
||||
|
||||
modal.onDidDismiss().then(res => {
|
||||
modal.onDidDismiss().then(async (res) => {
|
||||
if(res.data){
|
||||
|
||||
|
||||
@@ -73,11 +73,11 @@ export class DeplomaOptionsPage implements OnInit {
|
||||
|
||||
|
||||
if(actionName == 'Solicitar assinatura'){
|
||||
this.askSignature(res.data.note, docs);
|
||||
await this.askSignature(res.data.note, docs);
|
||||
this.goBack();
|
||||
}
|
||||
else if(actionName == 'Solicitar alteração'){
|
||||
this.askToChange(res.data.note, docs);
|
||||
await this.askToChange(res.data.note, docs);
|
||||
this.goBack();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user