From bc5c75f7795190664609921f138efca5b962bcb8 Mon Sep 17 00:00:00 2001 From: Anmol Singh Bhatia Date: Fri, 10 Jan 2025 14:14:19 +0530 Subject: [PATCH 1/2] chore: empty state config updated --- web/core/constants/empty-state.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/core/constants/empty-state.ts b/web/core/constants/empty-state.ts index 9545b57c904..2ec4cb417c3 100644 --- a/web/core/constants/empty-state.ts +++ b/web/core/constants/empty-state.ts @@ -195,7 +195,7 @@ const emptyStateDetails = { text: "Create an initiative", }, accessType: "workspace", - access: [EUserPermissions.ADMIN], + access: [EUserPermissions.ADMIN, EUserPermissions.MEMBER], }, [EmptyStateType.WORKSPACE_INITIATIVES_EMPTY_SEARCH]: { key: EmptyStateType.WORKSPACE_INITIATIVES_EMPTY_SEARCH, From 1427d39a29ba6a19efda5e3fe2ad7d9ac7f31009 Mon Sep 17 00:00:00 2001 From: Anmol Singh Bhatia Date: Fri, 10 Jan 2025 14:14:35 +0530 Subject: [PATCH 2/2] chore: project store updated --- web/core/store/project/project.store.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/core/store/project/project.store.ts b/web/core/store/project/project.store.ts index e32c189546c..119cb01b2ba 100644 --- a/web/core/store/project/project.store.ts +++ b/web/core/store/project/project.store.ts @@ -230,7 +230,7 @@ export class ProjectStore implements IProjectStore { }; setLastCollapsibleAction = (section: ProjectOverviewCollapsible) => { - this.openCollapsibleSection = [section]; + this.openCollapsibleSection = [...this.openCollapsibleSection, section]; }; toggleOpenCollapsibleSection = (section: ProjectOverviewCollapsible) => {