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, 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) => {