buttons: save is first, cancel is second

This commit is contained in:
Eudes Inácio
2023-08-23 13:34:03 +01:00
9 changed files with 56 additions and 22 deletions
@@ -22,7 +22,8 @@
</ion-content>
<ion-footer class="ion-no-border">
<div class="buttons width-100">
<button class="btn-cancel cursor-pointer" shape="round" (click)="close()">Cancelar</button>
<button class="btn-ok cursor-pointer" shape="round" (click)="save()">Enviar</button>
<button class="btn-cancel cursor-pointer" shape="round" (click)="close()">Cancelar</button>
</div>
</ion-footer>
@@ -154,12 +154,14 @@ export class BookMeetingModalPage implements OnInit {
}
if (this.taskParticipants.length == 0) {
this.taskParticipants = [{
EmailAddress: SessionStore.user.Email,
IsRequired: true,
Name: SessionStore.user.FullName,
UserType: "GD"
}]
this.taskParticipants = [
// {
// EmailAddress: SessionStore.user.Email,
// IsRequired: true,
// Name: SessionStore.user.FullName,
// UserType: "GD"
// }
]
}
this.changeAgenda();