From c1c3b163d43fd528a9170c597ce0f996c2da4d48 Mon Sep 17 00:00:00 2001 From: RaidMax Date: Thu, 6 Apr 2023 21:19:08 -0500 Subject: [PATCH] remove unnecessary separator on client profile --- WebfrontCore/Views/Client/Profile/Index.cshtml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/WebfrontCore/Views/Client/Profile/Index.cshtml b/WebfrontCore/Views/Client/Profile/Index.cshtml index f6dcc524..b5e067ec 100644 --- a/WebfrontCore/Views/Client/Profile/Index.cshtml +++ b/WebfrontCore/Views/Client/Profile/Index.cshtml @@ -238,11 +238,8 @@ - -
- -
+
@foreach (var type in Enum.GetValues(typeof(MetaType)).Cast().Where(meta => !ignoredMetaTypes.Contains(meta)).OrderByDescending(meta => meta == MetaType.All)) { var buttonClass = !Model.MetaFilterType.HasValue && type == MetaType.All || Model.MetaFilterType.HasValue && Model.MetaFilterType.Value.ToString() == type.ToString() ? "btn-primary text-light" : "text-muted";