Skip to content

Commit

Permalink
feat(ui): update Formal RAI-centric labels (#685)
Browse files Browse the repository at this point in the history
* chore: package details `Formal RAI received` -> `Formal RAI response`

* chore: dashboard labels `Formal RAI Received` -> `Formal RAI Response`
  • Loading branch information
asharonbaltazar authored Jul 31, 2024
1 parent 37175e4 commit e3a68c0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
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

0 comments on commit e3a68c0

Please sign in to comment.