From 441324d35494ff14caffe5b7acd5ceb1ccf6468f Mon Sep 17 00:00:00 2001 From: Jon Welfringer <7365166+W6HBR@users.noreply.github.com> Date: Wed, 20 Sep 2023 14:59:44 -0700 Subject: [PATCH] Update to Profiles field list to include Title, Category and ViewOrder When adding additional profile fields, this enhancement makes it easier to see details of the profile fields for the purpose of field organization. --- Oqtane.Client/Modules/Admin/Profiles/Index.razor | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Oqtane.Client/Modules/Admin/Profiles/Index.razor b/Oqtane.Client/Modules/Admin/Profiles/Index.razor index c6b7cb8a..fcc19353 100644 --- a/Oqtane.Client/Modules/Admin/Profiles/Index.razor +++ b/Oqtane.Client/Modules/Admin/Profiles/Index.razor @@ -17,11 +17,17 @@ else     @SharedLocalizer["Name"] + @SharedLocalizer["Title"] + @SharedLocalizer["Category"] + @SharedLocalizer["ViewOrder"] @context.Name + @context.Title + @context.Category + @context.ViewOrder }