fix(shared): Unique key in breadcrumbs
This commit is contained in:
parent
dbdf81f4f4
commit
2883aa896f
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@ const Breadcrumbs = ({ crumbs=[], title }) => (
|
|||
</Link>
|
||||
</li>
|
||||
{crumbs.map(crumb => (
|
||||
<React.Fragment key={crumb[1]}>
|
||||
<React.Fragment key={crumb[1]+crumb[0]}>
|
||||
<li className="text-base-content px-2">»</li>
|
||||
<li>
|
||||
{crumb[1]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue