From 0b76ce5ebe01d1035657895a5402e1cc42c30a0c Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Fri, 6 Sep 2024 07:40:58 +0200 Subject: [PATCH] Fix page titles for role ban pages --- SS14.Admin/Pages/RoleBans/Create.cshtml | 2 +- SS14.Admin/Pages/RoleBans/Index.cshtml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/SS14.Admin/Pages/RoleBans/Create.cshtml b/SS14.Admin/Pages/RoleBans/Create.cshtml index 37a0540..2feed7b 100644 --- a/SS14.Admin/Pages/RoleBans/Create.cshtml +++ b/SS14.Admin/Pages/RoleBans/Create.cshtml @@ -2,7 +2,7 @@ @model SS14.Admin.Pages.RoleBans.Create @{ - ViewData["Title"] = "Create new ban"; + ViewData["Title"] = "Create new role ban"; } diff --git a/SS14.Admin/Pages/RoleBans/Index.cshtml b/SS14.Admin/Pages/RoleBans/Index.cshtml index cfe99f7..c0f6090 100644 --- a/SS14.Admin/Pages/RoleBans/Index.cshtml +++ b/SS14.Admin/Pages/RoleBans/Index.cshtml @@ -4,7 +4,7 @@ @model SS14.Admin.Pages.RoleBans.Index @{ - ViewData["Title"] = "Bans"; + ViewData["Title"] = "Role Bans"; var highlightBan = 0; if (TempData.TryGetValue("HighlightNewBan", out var highlightObj)) {