Fix input wrappin for multiple inputs

This commit is contained in:
barsdeveloper
2023-04-24 20:33:58 +02:00
parent ccba817160
commit dd25a75c02
15 changed files with 75 additions and 29 deletions

View File

@@ -37,7 +37,7 @@ export default class BoolPinTemplate extends PinTemplate {
renderInput() {
return html`
<input type="checkbox" class="ueb-pin-input" ?checked="${this.element.defaultValue}" />
<input type="checkbox" class="ueb-pin-input-wrapper ueb-pin-input" ?checked="${this.element.defaultValue}" />
`
}
}