I have the following code:
<td class = "detail_labels"> Date Added: </td>
<td>{{post.issueDate | date: M/d/yyyy}}</td>
But it is not showing up as 7/12/2015, it is showing as this: Jul 12, 2015
Please help fix this bug!
I have the following code:
<td class = "detail_labels"> Date Added: </td>
<td>{{post.issueDate | date: M/d/yyyy}}</td>
But it is not showing up as 7/12/2015, it is showing as this: Jul 12, 2015
Please help fix this bug!
You should add ' to your filter:
<td>{{post.issueDate | date: 'M/d/yyyy'}}</td>
See documentation for date filter on Angular documentation for more information