This commit is contained in:
Peter Maquiran
2021-07-12 16:30:03 +01:00
parent 98cf2649d6
commit df83910fa7
2 changed files with 3 additions and 2 deletions
@@ -20,7 +20,7 @@ import * as moment from 'moment';
})
export class EditEventPage implements OnInit {
stEvent: Event;
isRecurring:string;
isEventEdited: boolean;
@@ -39,7 +39,7 @@ export class EditEventPage implements OnInit {
public touchUi = false;
public enableMeridian = false;
public minDate = new Date().toISOString().slice(0,10)
public endMinDate = new Date(new Date().getTime() + 15 * 60000);
public endMinDate = new Date(new Date().getTime() + 15 * 60000).toISOString().slice(0,10)
public maxDate: any;
public stepHour = 1;
public stepMinute = 5;