Skip to content

Commit

Permalink
Fix #15246
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeAlhayek committed Feb 5, 2024
1 parent 768051f commit a95fe7a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public async Task BuildNavigationAsync(string name, NavigationBuilder builder)

private async Task BuildTreeAsync(Models.AdminMenu tree, NavigationBuilder builder)
{
foreach (MenuItem node in tree.MenuItems)
foreach (var node in tree.MenuItems)
{
var nodeBuilder = _nodeBuilders.FirstOrDefault(x => x.Name == node.GetType().Name);

Expand Down

0 comments on commit a95fe7a

Please sign in to comment.