This commit is contained in:
Peter Maquiran
2023-06-10 10:26:47 +01:00
parent 2f38104155
commit e57e48d9ce
5 changed files with 38 additions and 21 deletions
@@ -45,8 +45,8 @@ export class NewEventPage implements OnInit {
// date picker
public date: any;
public disabled = false;
public showSpinners = true;
public showSeconds = false;
public showSpinners = false;
public showSeconds = true;
public touchUi = false;
public enableMeridian = false;
public stepHour = 1;
@@ -5,6 +5,8 @@
</ion-refresher-content>
</ion-refresher>
{{ loadedEvent.HasAttachments | json}}
<div class="main-content d-flex height-100" [className]="isModal ? '_main-content d-flex height-100 ma-0 px-20 pt-30 pb-20 background-white' : 'main-content d-flex height-100'">
<div class="content d-flex flex-column width-100">
<div class="main-header d-flex">
@@ -395,10 +395,12 @@ export class ViewEventPage implements OnInit {
setTimeout(() => {
/* this.loadEvent(); */
this.loadEvent()
this.getAttachments()
}, 250);
this.isEventEdited = true;
}
this.getAttachments()
});
}