[Web] Do not print invalid date
parent
02fd0b03f6
commit
fee4b50b9b
|
@ -6,6 +6,7 @@ $(document).ready(function() {
|
|||
var started_s_ago = parseInt($(this).text(), 10);
|
||||
if (typeof started_s_ago != 'NaN') {
|
||||
var started_date = new Date((ts_now - started_s_ago) * 1000);
|
||||
if (started_date instanceof Date && !isNaN(started_date)) {
|
||||
var started_local_date = started_date.toLocaleDateString(undefined, {
|
||||
year: "numeric",
|
||||
month: "2-digit",
|
||||
|
@ -15,6 +16,9 @@ $(document).ready(function() {
|
|||
second: "2-digit"
|
||||
});
|
||||
$(this).text(started_local_date);
|
||||
} else {
|
||||
$(this).text('-');
|
||||
}
|
||||
}
|
||||
});
|
||||
// Parse general dates
|
||||
|
|
Loading…
Reference in New Issue