Browse Source

fixed #945

pull/947/head
Mostafa F 7 years ago
committed by GitHub
parent
commit
a391e05008
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      framework/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic/Themes/Basic/Components/Menu/_MenuItem.cshtml

2
framework/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic/Themes/Basic/Components/Menu/_MenuItem.cshtml

@ -7,7 +7,7 @@
}
@if (Model.IsLeaf)
{
@if (Model.Url != null)
if (Model.Url != null)
{
<a class="dropdown-item @cssClass @disabled" href="@(Model.Url ?? "#")" @Html.Raw(elementId)>
@Model.DisplayName

Loading…
Cancel
Save