Get emptyLabel property translated

This commit is contained in:
nathan 2024-09-06 14:20:20 -06:00
parent df20d58abf
commit c59be309d6

View File

@ -109,6 +109,19 @@ export const Et2WidgetWithSelectMixin = <T extends Constructor<LitElement>>(supe
*/
private _xmlOptions : SelectOption[] = [];
/**
* List of properties that get translated
* @returns object
*/
static get translate()
{
return {
...super.translate,
emptyLabel: true,
}
}
constructor(...args : any[])
{
super(...args);