Update table-edit-member-domains.js

This commit is contained in:
zandercymatics 2025-01-21 11:46:49 -07:00
parent 66d38441c1
commit f83628972b
No known key found for this signature in database
GPG key ID: FF4636ABEC9682B7

View file

@ -104,7 +104,7 @@ export class EditMemberDomainsTable extends BaseTable {
}
row.innerHTML = `
<th scope="row" role="rowheader" aria-label="Checkbox for ${domain.name}" data-label="Selection" data-sort-value="0" class="padding-right-105">
<th scope="row" role="rowheader" data-label="Selection" data-sort-value="0" class="padding-right-105">
<div class="usa-checkbox">
<input
class="usa-checkbox__input"
@ -112,6 +112,7 @@ export class EditMemberDomainsTable extends BaseTable {
type="checkbox"
name="${domain.name}"
value="${domain.id}"
aria-label="${domain.name}"
${checked ? 'checked' : ''}
${disabled ? 'disabled' : ''}
/>