Skip to content

Commit

Permalink
feat(matchExpr): topology-based match expression evaluator
Browse files Browse the repository at this point in the history
Signed-off-by: Thuan Vo <[email protected]>
  • Loading branch information
Thuan Vo committed Mar 21, 2023
1 parent 854c966 commit 79dd595
Show file tree
Hide file tree
Showing 19 changed files with 1,363 additions and 810 deletions.
11 changes: 3 additions & 8 deletions src/app/BreadcrumbPage/BreadcrumbPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,14 +56,9 @@ export const BreadcrumbPage: React.FC<BreadcrumbPageProps> = (props) => {
<PageSection>
<Breadcrumb>
{(props.breadcrumbs || []).map(({ title, path }) => (
<BreadcrumbItem
key={path}
render={() => (
<>
<Link to={path}>{title}</Link>
</>
)}
></BreadcrumbItem>
<BreadcrumbItem key={path}>
<Link to={path}>{title}</Link>
</BreadcrumbItem>
))}
<BreadcrumbHeading>{props.pageTitle}</BreadcrumbHeading>
</Breadcrumb>
Expand Down
Loading

0 comments on commit 79dd595

Please sign in to comment.