Skip to content

Commit

Permalink
Decodes URL components in breadcrumb to avoid %20 displays
Browse files Browse the repository at this point in the history
  • Loading branch information
elijahbenizzy committed Aug 20, 2024
1 parent 34ba936 commit 9ba07e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion telemetry/ui/src/components/nav/breadcrumb.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export const BreadCrumb = () => {
className="ml-4 text-sm font-medium text-gray-500 hover:text-gray-700"
aria-current={page.current ? 'page' : undefined}
>
{page.name}
{decodeURIComponent(page.name)}
</Link>
)}
</div>
Expand Down

0 comments on commit 9ba07e0

Please sign in to comment.