From 2a3f3fa866e64b9ac2ee15dbf5a2715fc1053e19 Mon Sep 17 00:00:00 2001 From: LD-Reborn Date: Sun, 12 Oct 2025 17:08:37 +0200 Subject: [PATCH] Fixed Groups creation table entry has cn instead of displayname --- src/Views/Home/Groups.cshtml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Views/Home/Groups.cshtml b/src/Views/Home/Groups.cshtml index b4f0025..274752b 100644 --- a/src/Views/Home/Groups.cshtml +++ b/src/Views/Home/Groups.cshtml @@ -286,7 +286,7 @@ const newRow = document.createElement('tr'); newRow.innerHTML = ` - ${jsonData.Cn} + ${jsonData.DisplayName} ${jsonData.Permissions.includes("CanInventorize") ? "✓" : "✗"} ${jsonData.Permissions.includes("CanManageUsers") ? "✓" : "✗"} ${jsonData.Permissions.includes("CanManageLocations") ? "✓" : "✗"}