Skip to content

Commit

Permalink
chore(issue-views): Add translation wrapper to aria label (#79320)
Browse files Browse the repository at this point in the history
Wraps the aria label for the tab ellipsis menu with a translation
wrapper
  • Loading branch information
MichaelSun48 authored Oct 18, 2024
1 parent 06ca791 commit 5cbdff7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,7 @@ export function DraggableTabBar({
<DraggableTabMenuButton
hasUnsavedChanges={!!tab.unsavedChanges}
menuOptions={makeMenuOptions(tab)}
aria-label={`${tab.label} Ellipsis Menu`}
aria-label={t(`%s Ellipsis Menu`, tab.label)}
/>
</motion.div>
)}
Expand Down

0 comments on commit 5cbdff7

Please sign in to comment.