mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-14 01:48:35 +01:00
Fix doubled options with freeEntries
This commit is contained in:
parent
a4b0a2a1f0
commit
cdd13e5109
@ -696,7 +696,9 @@ export class Et2Select extends Et2WithSearchMixin(Et2WidgetWithSelect)
|
||||
protected handleValueChange(e : SlChangeEvent)
|
||||
{
|
||||
const old_value = this.__value;
|
||||
this.__value = this.select.value;
|
||||
this.__value = Array.isArray(this.select.value) ?
|
||||
this.select.value.map(e => e.replaceAll("___", " ")) :
|
||||
this.select.value.replaceAll("___", " ");
|
||||
this.requestUpdate("value", old_value);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user