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

Implement Table Actions pattern and default columns #998

Merged
merged 23 commits into from
Jan 6, 2025
Merged
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
89b582e
Implement Table Actions pattern and default columns
martha Dec 16, 2024
50b472b
Add random comment
martha Dec 16, 2024
bb38721
Merge branch 'release-145' into martha/6761-tables
martha Dec 18, 2024
e47d030
Merge branch 'martha/6825-hh-member-row' into martha/6761-tables
martha Dec 18, 2024
7a4dd51
Add storybook for table actions and fix cde story
martha Dec 18, 2024
401f777
Merge branch 'martha/6825-hh-member-row' into martha/6761-tables
martha Dec 31, 2024
5c4d33a
Implement PR suggestion of moving table row to column def
martha Dec 31, 2024
2d2d133
Merge branch 'martha/6825-hh-member-row' into martha/6761-tables
martha Dec 31, 2024
8b6a383
Merge branch 'martha/6825-hh-member-row' into martha/6761-tables
martha Dec 31, 2024
2feec78
add todo
martha Dec 31, 2024
5026d48
Merge branch 'martha/6825-hh-member-row' into martha/6761-tables
martha Dec 31, 2024
39ce9ce
Merge branch 'martha/6825-hh-member-row' into martha/6761-tables
martha Jan 2, 2025
f91ea56
Merge branch 'martha/6825-hh-member-row' into martha/6761-tables
martha Jan 2, 2025
0605c2a
Finish refactor to use column def instead of getTableAction
martha Jan 2, 2025
d5bd5aa
Fix bulk services loading
martha Jan 2, 2025
e316ed0
Provide a visually hidden header when header isnt provided
martha Jan 2, 2025
7686543
Merge branch 'martha/6825-hh-member-row' into martha/6761-tables
martha Jan 2, 2025
004ea99
Keep existing behavior of individual/household assessment viewing
martha Jan 2, 2025
5bc2ea6
Merge branch 'martha/6825-hh-member-row' into martha/6761-tables
martha Jan 3, 2025
bdde162
Fix typescript
martha Jan 3, 2025
7339f04
Add accessible text for RelativeDateDisplay
martha Jan 3, 2025
eee782f
implement one possible approach for client ID typescript
martha Jan 6, 2025
61499cf
Remove unnecessary cast
martha Jan 6, 2025
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
Prev Previous commit
Remove unnecessary cast
martha committed Jan 6, 2025

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
commit 61499cfbbfedc78cf3df7a6e335a149a51c75b8e
2 changes: 1 addition & 1 deletion src/components/elements/table/tableRowActionUtil.tsx
Original file line number Diff line number Diff line change
@@ -43,7 +43,7 @@ export const getViewEnrollmentMenuItem = (
return {
title: 'View Enrollment',
key: 'enrollment',
ariaLabel: `View Enrollment, ${clientBriefName(client as ClientNameFragment)} ${entryExitRange(enrollment)}`,
ariaLabel: `View Enrollment, ${clientBriefName(client)} ${entryExitRange(enrollment)}`,
to: generateSafePath(EnrollmentDashboardRoutes.ENROLLMENT_OVERVIEW, {
clientId: client.id,
enrollmentId: enrollment.id,