Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cu 86bwch8pa publishers records page alonzo pineau #2257

Merged
merged 2 commits into from
Aug 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,13 @@ const GroupAccordion = ({
}) => {
return (
<Accordion
slotProps={{
transition: {
// Without this, when closing fist section, SvgIcon can dispaear on others sections
unmountOnExit: true,
mountOnEnter: true,
},
}}
elevation={0}
sx={{
margin: '0px !important',
Expand Down
10 changes: 10 additions & 0 deletions src/pages/dashboard/congregation/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { DashboardCard, DashboardMenu } from '@features/index';
import {
IconGroups,
IconManageAccess,
IconPublisherRecordCard,
IconSettings,
IconSynced,
} from '@icons/index';
Expand All @@ -23,6 +24,15 @@ const CongregationCard = () => {
path="/service-groups"
/>
</ListItem>
{isConnected && (
<ListItem disablePadding>
<DashboardMenu
icon={<IconPublisherRecordCard color="var(--black)" />}
primaryText={t('tr_publishersRecords')}
path="/publisher-records"
/>
</ListItem>
)}
{isConnected && (
<ListItem disablePadding>
<DashboardMenu
Expand Down
Loading