Browse Source

Allow empty menu url

pull/279/head
Halil İbrahim Kalkan 8 years ago
parent
commit
8014bb0a85
  1. 5
      src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic/Views/Shared/Components/Theme/MainNavbar/Menu/Default.cshtml

5
src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic/Views/Shared/Components/Theme/MainNavbar/Menu/Default.cshtml

@ -1,11 +1,10 @@
@using System
@using Volo.Abp.UI.Navigation
@using Volo.Abp.UI.Navigation
@model ApplicationMenu
@foreach (var menuItem in Model.Items)
{
if (menuItem.IsLeaf)
{
if (menuItem.Url.IsNullOrEmpty())
if (menuItem.Url == null)
{
continue;
}

Loading…
Cancel
Save