Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion elements/pf-table/pf-th.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export class PfTh extends LitElement {
const closestThead = this.closest('pf-thead');
const closestTable = this.closest('pf-table');
const isChildOfThead = !!closestThead && !!closestTable?.contains(closestThead);
const role = isChildOfThead ? 'colheader' : 'rowheader';
const role = isChildOfThead ? 'columnheader' : 'rowheader';
this.setAttribute('role', role);
}

Expand Down
1 change: 1 addition & 0 deletions elements/pf-table/pf-tr.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ export class PfTr extends LitElement {
<pf-button id="toggle-button"
aria-expanded=${String(this.expanded) as 'true' | 'false'}
plain
label="Expand Button"
@click=${this.#onClick}>
<pf-icon id="toggle-icon"
icon="angle-right"
Expand Down
Loading