From 27cec64c56fced338409d6e71ca38ffbd24a2671 Mon Sep 17 00:00:00 2001 From: Vamsi Krishna <46787868+vamsikrishnamathala@users.noreply.github.com> Date: Tue, 8 Apr 2025 14:38:08 +0530 Subject: [PATCH] [WEB-3794]chore: set project states to expand by default #6885 --- web/core/components/project-states/group-list.tsx | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/web/core/components/project-states/group-list.tsx b/web/core/components/project-states/group-list.tsx index 1fbc8f1da..dbd33238f 100644 --- a/web/core/components/project-states/group-list.tsx +++ b/web/core/components/project-states/group-list.tsx @@ -15,7 +15,13 @@ type TGroupList = { export const GroupList: FC = observer((props) => { const { workspaceSlug, projectId, groupedStates } = props; // states - const [groupsExpanded, setGroupsExpanded] = useState[]>([]); + const [groupsExpanded, setGroupsExpanded] = useState[]>([ + "backlog", + "unstarted", + "started", + "completed", + "cancelled", + ]); const handleGroupCollapse = (groupKey: TStateGroups) => { setGroupsExpanded((prev) => {