chore(nx-dev): wrap breadcrumbs (#29059)
This commit is contained in:
parent
128778e7d1
commit
fc7ee36a96
@ -72,9 +72,12 @@ export function Breadcrumbs({
|
||||
return (
|
||||
<div>
|
||||
<nav className="flex" aria-labelledby="breadcrumb">
|
||||
<ol role="list" className="flex items-center space-x-4">
|
||||
<ol role="list" className="flex flex-wrap items-center space-x-3">
|
||||
{crumbs.map((crumb, index) => (
|
||||
<li key={crumb.id.concat('-', index.toString())}>
|
||||
<li
|
||||
className="m-1 block"
|
||||
key={crumb.id.concat('-', index.toString())}
|
||||
>
|
||||
<div className="flex items-center">
|
||||
{!!index && (
|
||||
<ChevronRightIcon
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user