Tim Donovan
My feedback
-
1,702 votes
As an update, since we’ve still been seeing issues around date formatting, so we’re pursuing another fix that should help: If you’re using Planner within Teams, we will default to using the same language/local as Teams.
If you’re seeing this issue persist outside of Teams and your language/locale is set properly for your Office account, please let us know in the comments below!
Thanks,
The Planner TeamAn error occurred while saving the comment
If you execute this in Chrome console (developer tools) it will temporarily fix the date format:
$('.todo-taskboard-card-dueDate').each(function (index, value) {
var date = new Date($(this).attr('title'));
$(this).children().text(date.getFullYear() + '-' + (date.getMonth()+1) + '-' + date.getDate());
});
If someone can wrap this into a Chrome plugin or a Greasemonkey script and trigger it on page load, or page change....This took me 5 mins and MS want 6 months to fix this..?!