mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-06-26 21:01:30 +02: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)
|
protected handleValueChange(e : SlChangeEvent)
|
||||||
{
|
{
|
||||||
const old_value = this.__value;
|
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);
|
this.requestUpdate("value", old_value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user