Skip to content

Commit

Permalink
Merge pull request #1597 from AdaptiveConsulting/ARTP-1155_dates_form…
Browse files Browse the repository at this point in the history
…atting_again

Launcher Trade Results Date Formatting
  • Loading branch information
rikoe authored May 18, 2020
2 parents 2f76ca8 + 2c07535 commit eaad52e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const InlineBlotter: FC<BlotterProps> = ({ filters }) => {
const rows = trades.map((trade) => ({
...trade,
notional: numeral(trade.notional).format(),
tradeDate: DateTime.fromJSDate(trade.tradeDate).toFormat('yyyy LLL dd'),
tradeDate: DateTime.fromJSDate(trade.tradeDate).toFormat('dd-LLL-yyyy'),
}))

return (
Expand Down

0 comments on commit eaad52e

Please sign in to comment.