Skip to content

Commit

Permalink
Merge pull request #524 from DFE-Digital/mattb/SWCD-2563-broken-bread…
Browse files Browse the repository at this point in the history
…cumb-links

fix: ensured that breadcrumb links are absolute, not relative
  • Loading branch information
nealhippo authored Oct 21, 2024
2 parents 9372505 + 668a8fa commit 7cd5f6c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
@foreach(KeyValuePair<string, string> trailItem in breadcrumbs)
{
<li class="govuk-breadcrumbs__list-item">
<a class="govuk-breadcrumbs__link" href="@trailItem.Value">
<a class="govuk-breadcrumbs__link" href="/@trailItem.Value">
@trailItem.Key
</a>
</li>
Expand Down

0 comments on commit 7cd5f6c

Please sign in to comment.