Skip to content

Commit

Permalink
fix: fixed accessibility for pf-table
Browse files Browse the repository at this point in the history
  • Loading branch information
Atharv-G-Kulkarni committed Dec 10, 2024
1 parent 5940f37 commit 7f189ae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
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

0 comments on commit 7f189ae

Please sign in to comment.