Skip to content

Commit

Permalink
remove labelled by
Browse files Browse the repository at this point in the history
  • Loading branch information
ematipico committed Dec 20, 2024
1 parent b656562 commit 31314a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/astro/src/runtime/client/dev-toolbar/toolbar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -416,9 +416,9 @@ export class AstroDevToolbar extends HTMLElement {
}

getAppTemplate(app: DevToolbarApp) {
return `<button class="item" data-app-id="${app.id}" aria-labelledby="app-name-${app.name}">
return `<button class="item" data-app-id="${app.id}">
<div class="icon">${app.icon ? getAppIcon(app.icon) : '?'}<div class="notification"></div></div>
<span class="item-tooltip" id="app-name-${app.name}">${app.name}</span>
<span class="item-tooltip">${app.name}</span>
</button>`;
}

Expand Down

0 comments on commit 31314a7

Please sign in to comment.