I am working on some API clockify API integration. I am getting all time entries from the API. in the response I am getting start & end time of the task in the 2019-02-22T12:11:00Z
.
I want to convert above date format in DD/MM/YYYY HH:MM:SS
format. I have used date pipe for this {{item.timeInterval.start | date: dd/MM/yyyy, h:mm a z
}} but its not working. it displays the same.
How can I achieve this?