WebUI: Restore weekday name to Upcoming/Finished/Failed Recordings grids
This commit is contained in:
parent
9a5b4db242
commit
d5ce076150
1 changed files with 1 additions and 1 deletions
|
@ -303,7 +303,7 @@ tvheadend.IdNodeField = function(conf)
|
|||
}
|
||||
return function(v) {
|
||||
var dt = new Date(v * 1000);
|
||||
return dt.toLocaleString();
|
||||
return dt.toLocaleString(window.navigator.language, {weekday: 'short'}) + ' ' + dt.toLocaleString();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue