AngularJS UnixTime to DateTime Format with date filter failed AngularJS UnixTime to DateTime Format with date filter failed angularjs angularjs

AngularJS UnixTime to DateTime Format with date filter failed


the time shown is epoch and not actual date. please read the links in your question, answer is there in one of the links.

you need to multiply the time by 1000.

<td>{{contract.start_date_unix * 1000 | date:'MM-dd-yyyy'}}</td>