From 0a05348ab6e2688d300d5773edb1b2669b72969c Mon Sep 17 00:00:00 2001 From: Pedro Igor Date: Tue, 11 Nov 2025 09:45:35 -0300 Subject: [PATCH] Ordering attributes will unset the unmanaged attribute policy Closes #44010 Signed-off-by: Pedro Igor --- .../admin-ui/src/realm-settings/user-profile/AttributesTab.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/apps/admin-ui/src/realm-settings/user-profile/AttributesTab.tsx b/js/apps/admin-ui/src/realm-settings/user-profile/AttributesTab.tsx index 09743249741..8f311c0cd4f 100644 --- a/js/apps/admin-ui/src/realm-settings/user-profile/AttributesTab.tsx +++ b/js/apps/admin-ui/src/realm-settings/user-profile/AttributesTab.tsx @@ -140,7 +140,7 @@ export const AttributesTab = ({ setTableData }: AttributesTabProps) => { attributes.splice(newIndex, 0, movedAttribute); await save( - { attributes, groups }, + { ...config, attributes, groups }, { successMessageKey: "updatedUserProfileSuccess", errorMessageKey: "updatedUserProfileError",