Fix readonly selects could display 'undefined' with no value and no emptyLabel

This commit is contained in:
nathan 2023-01-26 12:58:37 -07:00
parent bf6cca24fd
commit 9cebab3c2f

View File

@ -165,7 +165,7 @@ li {
{ {
if(!this.value || Array.isArray(this.value) && !this.value.length) if(!this.value || Array.isArray(this.value) && !this.value.length)
{ {
return this._readonlyRender({label: this.emptyLabel, value: ""}); return this._readonlyRender({label: this.emptyLabel || "", value: ""});
} }
return html` return html`