mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-24 08:53:37 +01:00
Et2Select: Fix selects with options from file were not showing their initial set value
This commit is contained in:
parent
6224c2c0c5
commit
688de6d52c
@ -508,7 +508,17 @@ export class Et2Select extends Et2WithSearchMixin(Et2WidgetWithSelect)
|
||||
}
|
||||
if(changedProperties.has("select_options") || changedProperties.has("value") || changedProperties.has("emptyLabel"))
|
||||
{
|
||||
this.updateComplete.then(() => this.fix_bad_value());
|
||||
this.updateComplete.then(() =>
|
||||
{
|
||||
this.fix_bad_value();
|
||||
|
||||
|
||||
// Force select to stay in sync, avoids value not shown when select options arrive late
|
||||
if(this.select && this.value !== null && typeof this.value !== "undefined")
|
||||
{
|
||||
this.select.value = this.value;
|
||||
}
|
||||
});
|
||||
}
|
||||
if(changedProperties.has("select_options") && changedProperties.has("value"))
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user