mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-04-18 19:48:53 +00:00
fix(calendar(js)): fix refresh of attendees freebusy information
* refresh template with freebusy information of organizer * fix event coverage in freebusy timeline when event spans a day Related to bug #4899
This commit is contained in:
@@ -358,8 +358,10 @@
|
||||
|
||||
this.removeAttendee = function (attendee, form) {
|
||||
this.component.$attendees.remove(attendee);
|
||||
if (this.component.$attendees.getLength() === 0)
|
||||
if (this.component.$attendees.getLength() === 0) {
|
||||
this.showAttendeesEditor = false;
|
||||
this.component.$attendees.remove(this.component.organizer);
|
||||
}
|
||||
form.$setDirty();
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user