From 37ebf8781c6d3b9e59c4de29ff2061b2ce213c76 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=98=99=E2=97=A6=20The=20Tablet=20=E2=9D=80=20GamerGirla?= =?UTF-8?q?ndCo=20=E2=97=A6=E2=9D=A7?= Date: Thu, 21 Aug 2025 20:03:01 -0400 Subject: [PATCH] fix bug where group sort order is not updated correctly --- services/forms/group.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/forms/group.go b/services/forms/group.go index 1cc1f3bec2..f07a0087e8 100644 --- a/services/forms/group.go +++ b/services/forms/group.go @@ -18,7 +18,7 @@ type MovedGroupItemForm struct { IsGroup bool `json:"isGroup"` ItemID int64 `json:"id"` NewParent int64 `json:"newParent"` - NewPos int `json:"newPosition"` + NewPos int `json:"newPos"` } type CreateGroupTeamForm struct { Permission string