From 69d6a70751fe21991eb38d0f75f101a8e2f31499 Mon Sep 17 00:00:00 2001 From: Sarah Withee Date: Wed, 26 Jul 2017 11:47:49 -0500 Subject: [PATCH] Fix navbar home link to point to root It pointed to a non-existent Home controller. It now just goes back to the root/index page. --- DotNetAppSqlDb/Views/Shared/_Layout.cshtml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DotNetAppSqlDb/Views/Shared/_Layout.cshtml b/DotNetAppSqlDb/Views/Shared/_Layout.cshtml index 35f8514..bda12e0 100644 --- a/DotNetAppSqlDb/Views/Shared/_Layout.cshtml +++ b/DotNetAppSqlDb/Views/Shared/_Layout.cshtml @@ -16,7 +16,7 @@ - @Html.ActionLink("My TodoList App", "Index", "Home", new { area = "" }, new { @class = "navbar-brand" }) + @Html.ActionLink("My TodoList App", "Index", new { controller = "Todos" }, new { @class = "navbar-brand" })