Skip to content
Closed
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
5 changes: 5 additions & 0 deletions .changeset/fix-jump-links-nav.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@patternfly/elements": patch
---

`<pf-jump-links>`: added the `accessible-label` attribute for the navigation element, defaulting to "Page section navigation".
2 changes: 1 addition & 1 deletion elements/pf-jump-links/pf-jump-links.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export class PfJumpLinks extends LitElement {

render(): TemplateResult<1> {
return html`
<nav id="container">${this.expandable ? html`
<nav id="container" aria-label="${this.label || 'Page section navigation'}">${this.expandable ? html`
<details ?open="${this.expanded}" @toggle="${this.#onToggle}">
<summary>
<pf-icon icon="chevron-right"></pf-icon>
Expand Down
Loading