mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-24 00:43:20 +01:00
Calendar: Fix second selected owner in sidemenu went missing
This commit is contained in:
parent
c9c98969b4
commit
2ea5a41d4f
@ -386,7 +386,7 @@ export const Et2WithSearchMixin = <T extends Constructor<LitElement>>(superclass
|
||||
if(this._activeControls)
|
||||
{
|
||||
// Already there
|
||||
this._activeControls.remove();
|
||||
return;
|
||||
}
|
||||
|
||||
const div = document.createElement("div");
|
||||
|
@ -3698,6 +3698,12 @@ export class CalendarApp extends EgwApp
|
||||
if(option.value == widget.select_options[j].value)
|
||||
{
|
||||
widget.select_options[j].label = option.label;
|
||||
|
||||
// Do not let remote options stay remote or they'll disappear
|
||||
if(typeof widget.select_options[j].class == "string")
|
||||
{
|
||||
widget.select_options[j].class = widget.select_options[j].class.replace("remote", "")
|
||||
}
|
||||
found = true;
|
||||
break;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user