mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 09:05:16 +01:00
Et2Select: Fix change event got fired too early
Don't need to block the event if we didn't actually change the value. This fixes changing to common preferences
This commit is contained in:
parent
cbccbba108
commit
47a48b386f
@ -284,7 +284,7 @@ export class Et2Select extends Et2WithSearchMixin(Et2WidgetWithSelect)
|
||||
{
|
||||
let oldValue = this.value;
|
||||
this.value = this.emptyLabel ? "" : "" + this.select_options[0]?.value;
|
||||
this._block_change_event = true;
|
||||
this._block_change_event = (oldValue != this.value);
|
||||
// ""+ to cast value of 0 to "0", to not replace with ""
|
||||
this.requestUpdate("value", oldValue);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user