As demonstrated in the following screenshot, some start date are displayed as EPOCH (or close enough):
[1] "1/1/1970, 1:00:00 AM"
As demonstrated in the following screenshot, some start date are displayed as EPOCH (or close enough):
[1] "1/1/1970, 1:00:00 AM"
rDWAPPS Web applications | |||
D5624 | rDWAPPS2fb5a2e72feb Fix malformatted date value when null |
Well, trying out the following in your browser (console or devtools):
> new Date(null).toLocaleString() "1/1/1970, 1:00:00 AM"
So there you go, when the start date is null, it renders such value.
So the code rendering the date should check for null value and left it as is.