fix(boards): selection menu not shown to users without change access (#4689)

This commit is contained in:
Meier Lukas
2025-12-19 16:36:45 +01:00
committed by GitHub
parent f4bb90013a
commit a0a11e3570

View File

@@ -44,7 +44,7 @@ export const BoardContentHeaderActions = () => {
const { hasChangeAccess } = useBoardPermissions(board);
if (!hasChangeAccess) {
return null; // Hide actions for user without access
return <SelectBoardsMenu />;
}
return (