Hm… the table value is showing Jan 1, 2019, but the populated date in the modal makes it Jan 2, 2019.
Turning off Time Zone does not affect this.
So despite the passed in string being "Jan 1, 2019 12:00 AM -06:00
it's outputting Jan 2, 2019 (and still 12:00 AM)
The code:
{{
${fixupsResultsTable.selectedRow.effective_date ? moment(fixupsResultsTable.selectedRow.effective_date).format('dddd, MMMM d, YYYY') : ''} }}
EDIT:
d
to D
in that formatting. d
is "day of the week (0-6)
" and D
is… the date I'm looking for.