This commit is contained in:
Peter Maquiran
2021-06-30 09:45:56 +01:00
parent fb367b40ae
commit 22bafcc357
9 changed files with 139 additions and 197 deletions
@@ -20,7 +20,6 @@ import * as moment from 'moment';
})
export class EditEventPage implements OnInit {
stEvent: Event;
isRecurring:string;
isEventEdited: boolean;
@@ -86,7 +85,6 @@ export class EditEventPage implements OnInit {
public stepMinutes = [1, 5, 10, 15, 20, 25];
public stepSeconds = [1, 5, 10, 15, 20, 25];
constructor(
private modalController: ModalController,
private eventsService: EventsService,
@@ -97,7 +95,6 @@ export class EditEventPage implements OnInit {
ngOnInit() {
if(!this.restoreTemporaryData()){
// clear
@@ -128,7 +125,7 @@ export class EditEventPage implements OnInit {
this.isEventEdited = false;
if(this.postEvent.IsRecurring == false){
if(this.postEvent.IsRecurring == false) {
this.isRecurring = "Não se repete";
}
else{
@@ -139,7 +136,6 @@ export class EditEventPage implements OnInit {
this.getAttachments(this.postEvent.EventId);
this.restoreDatepickerData()
}
close() {