From cbae08c9e31e85de76c9b8769b296566516a6b4a Mon Sep 17 00:00:00 2001 From: Gregory Rudolph Date: Mon, 18 Oct 2021 20:19:25 -0400 Subject: [PATCH] Fixed --- Pages/Index.cshtml.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Pages/Index.cshtml.cs b/Pages/Index.cshtml.cs index 253f5e8..44ee898 100644 --- a/Pages/Index.cshtml.cs +++ b/Pages/Index.cshtml.cs @@ -81,6 +81,7 @@ namespace NightmareCoreWeb2.Pages ViewData["Title"] = "All Characters"; this.CharacterListType = ViewData["Title"]; + this.CharacterListType = "All Characters"; string sql = "select username,name,level,race,class from characters.characters join auth.account on characters.characters.account = auth.account.id"; QuerySQL(sql); return;