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

feat(ui): update Formal RAI-centric labels #685

Merged
merged 2 commits into from
Jul 31, 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 @@ -106,7 +106,7 @@ export const DATE_LATESTPACKAGEACTIVITY: DrawerFilterableGroup = {
};

export const DATE_RAIRECEIVED: DrawerFilterableGroup = {
label: "Formal RAI Received",
label: "Formal RAI Response",
field: "raiReceivedDate",
component: "dateRange",
prefix: "must",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ export const useSpaTableColumns = (): OsTableColumn[] => {
},
{
field: "raiReceivedDate",
label: "Formal RAI Received",
label: "Formal RAI Response",
transform: (data) => {
return data.raiReceivedDate
? formatSeatoolDate(data.raiReceivedDate)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ export const useWaiverTableColumns = (): OsTableColumn[] => {
},
{
field: "raiReceivedDate",
label: "Formal RAI Received",
label: "Formal RAI Response",
transform: (data) => {
return data.raiReceivedDate
? formatSeatoolDate(data.raiReceivedDate)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ export const recordDetails = (
canView: () => true,
},
{
label: "Formal RAI received",
label: "Formal RAI response",
value: data.raiReceivedDate
? formatSeatoolDate(data.raiReceivedDate)
: BLANK_VALUE,
Expand Down
Loading