mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-22 23:00:56 +01:00
Fix item class was not correct
This commit is contained in:
parent
59862bba7b
commit
7cb13015ae
@ -396,7 +396,7 @@ export const Et2WithSearchMixin = dedupeMixin((superclass) =>
|
||||
let entries = cleanSelectOptions(results);
|
||||
|
||||
// Add a "remote" class so we can tell these apart from any local results
|
||||
entries.forEach((entry) => entry.class = entry.class += "remote");
|
||||
entries.forEach((entry) => entry.class = (entry.class || "") + " remote");
|
||||
|
||||
let target = this._optionTargetNode || this;
|
||||
if(target)
|
||||
|
Loading…
Reference in New Issue
Block a user