web/elements: fix alignment with checkbox in table

Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
Jens Langhammer 2022-12-22 15:12:47 +01:00
parent ab9efcea77
commit db0af3763b
1 changed files with 27 additions and 26 deletions

View File

@ -286,7 +286,8 @@ export abstract class Table<T> extends AKElement {
<tr role="row">
${this.checkbox
? html`<td class="pf-c-table__check" role="cell">
<input
<label
><input
type="checkbox"
.checked=${this.selectedElements.indexOf(item) >= 0}
@input=${(ev: InputEvent) => {
@ -313,7 +314,7 @@ export abstract class Table<T> extends AKElement {
this.requestUpdate();
}
}}
/>
/></label>
</td>`
: html``}
${this.expandable