Skip to content

Commit

Permalink
Merge pull request #1768 from Informasjonsforvaltning/develop
Browse files Browse the repository at this point in the history
fix: breadrumb items are displayed as rows
  • Loading branch information
jeffreiffers authored Sep 29, 2023
2 parents 44e64c0 + 107a110 commit 2353791
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 2353791

Please sign in to comment.