Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
WebUI: Restore weekday name to Upcoming/Finished/Failed Recordings grids
  • Loading branch information
ProfYaffle committed Dec 21, 2014
1 parent 9a5b4db commit d5ce076
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/webui/static/app/idnode.js
Expand Up @@ -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();
}
}

Expand Down

0 comments on commit d5ce076

Please sign in to comment.