Merge pull request #1798 from leigh-pointer/BreadCrumbs

Fix for #1797 Breadcrumbs render clickable
This commit is contained in:
Shaun Walker 2021-11-17 08:43:55 -05:00 committed by GitHub
commit fe9a7333ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,7 +16,15 @@
else
{
<li class="breadcrumb-item">
<a href="@NavigateUrl(p.Path)">@p.Name</a>
@if(p.IsClickable)
{
<a href="@NavigateUrl(p.Path)">@p.Name</a>
}
else
{
@p.Name
}
</li>
}
}