Skip to content

Commit

Permalink
docs(nxdev): add breadcrumbs index key (#12793)
Browse files Browse the repository at this point in the history
  • Loading branch information
bcabanes committed Oct 24, 2022
1 parent 2ed5d57 commit ea3898f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nx-dev/ui-common/src/lib/breadcrumbs.tsx
Expand Up @@ -27,7 +27,7 @@ export function Breadcrumbs({ path }: { path: string }): JSX.Element {
<nav className="flex" aria-labelledby="breadcrumb">
<ol role="list" className="flex items-center space-x-4">
{pages.map((page, index) => (
<li key={page.name}>
<li key={page.name.concat('-', index.toString())}>
<div className="flex items-center">
{!!index && (
<ChevronRightIcon
Expand Down

1 comment on commit ea3898f

@vercel
Copy link

@vercel vercel bot commented on ea3898f Oct 24, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

nx-dev – ./

nx-five.vercel.app
nx.dev
nx-dev-git-master-nrwl.vercel.app
nx-dev-nrwl.vercel.app

Please sign in to comment.