mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 07:53:39 +01:00
Calendar: Fix group calendar could be missing events under some circumstances
Static account options added to CalendarOwner were blocking the group data needed, fixed by using sent options over account options
This commit is contained in:
parent
b44ea1b2b0
commit
e0d284d3ae
@ -53,7 +53,7 @@ export const Et2StaticSelectMixin = <T extends Constructor<Et2WidgetWithSelect>>
|
||||
const options = super.select_options || [];
|
||||
// make sure result is unique
|
||||
|
||||
return [...new Map([...options, ...(this.static_options || [])].map(item =>
|
||||
return [...new Map([...(this.static_options || []), ...options].map(item =>
|
||||
[item.value, item])).values()];
|
||||
|
||||
}
|
||||
|
@ -89,7 +89,7 @@ export class CalendarOwner extends Et2StaticSelectMixin(Et2Select)
|
||||
{
|
||||
for(var i = 0; i < this.value.length; i++)
|
||||
{
|
||||
if(!this.menuItems.find(o => o.value == this.value[i]))
|
||||
if(!this.select_options.find(o => o.value == this.value[i]))
|
||||
{
|
||||
missing_labels.push(this.value[i]);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user