Skip to content

Commit

Permalink
fix: breadrumb items are displayed as rows
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffreiffers committed Sep 29, 2023
1 parent ea61886 commit 107a110
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/breadcrumbs/breadcrumbs.component.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ function PureBreadcrumbs({ breadcrumbs }) {
return (
<div className='fdk-p-path'>
<div className='container'>
<p className='row col-12 col-xs-12 my-2'>
<p className='col-12 col-xs-12 my-2'>
{breadcrumbs.map(({ key, match, breadcrumb }, index) => (
<span key={key}>
{index < breadcrumbs.length - 1 && (
Expand Down

0 comments on commit 107a110

Please sign in to comment.