You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I had a similar experience, pipe worked in chrome but not IE, turns out the inputted date was invalid in IE but chrome managed to parse it:
E.G
In Chrome, this works:
console.log(new Date("2018-09-11T07:12:55z"));
Output: Tue Sep 11 2018 17:12:55 GMT+1000 (Australian Eastern Standard Time)
In IE, it fails as an invalid date:
console.log(new Date("2018-09-11T07:12:55z"));
Output: "[date] Invalid Date[date] Invalid Date"
Changing it to a valid ISO8601 formatted date (which Z needs to be uppercase) allows IE to parse the date, resulting in the pipe working again.
its not working in IE 11
The text was updated successfully, but these errors were encountered: