From 6cf12343b6e7a7b83645e379989f36548c85b8a1 Mon Sep 17 00:00:00 2001 From: shatfield4 Date: Thu, 14 Aug 2025 17:57:22 -0700 Subject: [PATCH 1/2] allow default users to reorder workspaces --- .../Sidebar/ActiveWorkspaces/index.jsx | 24 +++++++++---------- 1 file changed, 11 insertions(+), 13 deletions(-) diff --git a/frontend/src/components/Sidebar/ActiveWorkspaces/index.jsx b/frontend/src/components/Sidebar/ActiveWorkspaces/index.jsx index c55c2b12472..728986c8847 100644 --- a/frontend/src/components/Sidebar/ActiveWorkspaces/index.jsx +++ b/frontend/src/components/Sidebar/ActiveWorkspaces/index.jsx @@ -89,7 +89,7 @@ export default function ActiveWorkspaces() { key={workspace.id} draggableId={workspace.id.toString()} index={index} - isDragDisabled={user?.role === "default"} + isDragDisabled={false} > {(provided, snapshot) => (
- {user?.role !== "default" && ( -
- -
- )} +
+ +

Date: Thu, 14 Aug 2025 18:00:32 -0700 Subject: [PATCH 2/2] unneeded prop --- frontend/src/components/Sidebar/ActiveWorkspaces/index.jsx | 1 - 1 file changed, 1 deletion(-) diff --git a/frontend/src/components/Sidebar/ActiveWorkspaces/index.jsx b/frontend/src/components/Sidebar/ActiveWorkspaces/index.jsx index 728986c8847..545bd6c4eb9 100644 --- a/frontend/src/components/Sidebar/ActiveWorkspaces/index.jsx +++ b/frontend/src/components/Sidebar/ActiveWorkspaces/index.jsx @@ -89,7 +89,6 @@ export default function ActiveWorkspaces() { key={workspace.id} draggableId={workspace.id.toString()} index={index} - isDragDisabled={false} > {(provided, snapshot) => (