mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-21 19:35:38 +00:00
fix(calendar(js)): ignore attendees when saving task
This commit is contained in:
@@ -351,7 +351,8 @@
|
||||
this.showAttendeesEditor |= initOrganizer;
|
||||
}
|
||||
|
||||
$timeout(scrollToStart);
|
||||
if (_.has(this.component, '$attendees'))
|
||||
$timeout(scrollToStart);
|
||||
|
||||
return $q.all(promises);
|
||||
};
|
||||
@@ -630,9 +631,11 @@
|
||||
};
|
||||
|
||||
function updateFreeBusy() {
|
||||
vm.component.$attendees.updateFreeBusyCoverage();
|
||||
vm.component.$attendees.updateFreeBusy();
|
||||
$timeout(scrollToStart);
|
||||
if (_.has(vm.component, '$attendees')) {
|
||||
vm.component.$attendees.updateFreeBusyCoverage();
|
||||
vm.component.$attendees.updateFreeBusy();
|
||||
$timeout(scrollToStart);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user