Various RTL fixes

This commit is contained in:
Yosi Levy
2022-05-25 06:01:40 +03:00
parent e841bf89be
commit d65e45ecfd
5 changed files with 19 additions and 8 deletions

View File

@@ -47,14 +47,14 @@ export class HaSelectSelector extends LitElement {
${this.label}
${options.map(
(item: SelectOption) => html`
<mwc-formfield .label=${item.label}>
<ha-formfield .label=${item.label}>
<ha-radio
.checked=${item.value === this.value}
.value=${item.value}
.disabled=${this.disabled}
@change=${this._valueChanged}
></ha-radio>
</mwc-formfield>
</ha-formfield>
`
)}
</div>