Skip to content

Commit

Permalink
Fixed the issue with missing Date responded values
Browse files Browse the repository at this point in the history
  • Loading branch information
peterhudec committed Feb 28, 2024
1 parent 74ef749 commit bbb0500
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/client/modules/ExportWins/Status/WinsWonTable.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export const WinsWonTable = ({ exportWins }) => (
country,
date,
total_expected_export_value,
created_on,
customer_response,
}) => (
<Table.Row key={id}>
<Table.Cell>
Expand All @@ -47,7 +47,9 @@ export const WinsWonTable = ({ exportWins }) => (
<Table.Cell>{country.name}</Table.Cell>
<Table.Cell>{currencyGBP(total_expected_export_value)}</Table.Cell>
<NoWrapCell>{formatMediumDate(date)}</NoWrapCell>
<NoWrapCell>{formatMediumDate(created_on)}</NoWrapCell>
<NoWrapCell>
{formatMediumDate(customer_response?.created_on)}
</NoWrapCell>
<NoWrapCell>
<Link
as={ReactRouterLink}
Expand Down

0 comments on commit bbb0500

Please sign in to comment.