fix(calendar): In some case, the startTime was not properly set

This commit is contained in:
Hivert Quentin
2024-11-29 10:38:38 +01:00
parent c7b0133000
commit 169a0c6125
2 changed files with 2 additions and 1 deletions
@@ -543,6 +543,7 @@
this.adjustEndTime();
this.changeAlarmRelation(form);
this.addAttendee(this.searchText).then(function () {
vm.adjustStartTime();
if (form.$valid) {
vm.component.$save(options)
.then(function(data) {
@@ -525,7 +525,7 @@
this.currentEventCoordinates.dayNumber += deltaDays;
}
$log.debug('event coordinates ' + JSON.stringify(this.currentEventCoordinates));
//$log.debug('event coordinates ' + JSON.stringify(this.currentEventCoordinates));
$rootScope.$emit('calendar:drag');
},