Fix missing translation on read-only select

This commit is contained in:
nathan 2023-01-24 14:42:55 -07:00
parent fcb522853e
commit 4e5f68f97c

View File

@ -186,7 +186,7 @@ li {
_readonlyRender(option : SelectOption) : TemplateResult _readonlyRender(option : SelectOption) : TemplateResult
{ {
return html` return html`
<li>${option.label}</li> <li>${this.noLang ? option.label : this.egw().lang(option.label)}</li>
`; `;
} }