Et2Select: Better fix for 80ad5dddb2 which caused problems with selecting options in Et2SelectEmail

This commit is contained in:
nathan 2023-11-21 13:57:24 -07:00
parent 80ad5dddb2
commit 519306c8d5

View File

@ -511,17 +511,20 @@ export class Et2Select extends Et2WithSearchMixin(Et2WidgetWithSelect)
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;
}
});
}
}
update(changedProperties : PropertyValues)
{
super.update(changedProperties);
if(changedProperties.has("select_options") && changedProperties.has("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;
}
}
}