I\'m using Angular 2.0 final, and I have an incorrect format of dates when I add hours and minutes in the format string:
In the template of the component, I have:
If you are okay with showing AM/PM instead of 24 hour time, another valid workaround is to break the formatting into two, and use shortTime or mediumTime for displaying the time portion:
{{dto.LastExecution | date:'yyyy-MM-dd'}} {{dto.LastExecution | date:'shortTime'}}
This should work in all major browsers, including IE and Edge.