From 3ead35c984c727496dc3b95e22f1bb9b022f0251 Mon Sep 17 00:00:00 2001 From: Jon Welfringer <7365166+W6HBR@users.noreply.github.com> Date: Thu, 4 Jan 2024 10:12:17 -0800 Subject: [PATCH] Update (Profiles) Edit.razor to fix breaking changes Prior functionality allowed 4 characters for "order" which now causes validation errors for any order value > 99. This change allows a value of up to 9999 which is consistent with the prior 4 character length value. Prior functionality allowed 2 characters for "rows" which now causes validattion error for any row count > 10. This change allows a value up to 99 which is consistent with the prior 2 character length value. --- Oqtane.Client/Modules/Admin/Profiles/Edit.razor | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Oqtane.Client/Modules/Admin/Profiles/Edit.razor b/Oqtane.Client/Modules/Admin/Profiles/Edit.razor index 91fe98ec..84555328 100644 --- a/Oqtane.Client/Modules/Admin/Profiles/Edit.razor +++ b/Oqtane.Client/Modules/Admin/Profiles/Edit.razor @@ -34,7 +34,7 @@