Reputation: 393
I have to order elements in a list by last modified date with angular.js 1.5. I do the ordering this way:
estate in estates | order by 'lastModifiedDate'
where lastModifiedDate is attribute in estate.
Sometimes it works and sometimes it does not sort the elements correctly. I get the dates from the server in this format:
estates: [
{
lastModifiedDate: 1479321747932
},
{
lastModifiedDate: 1479321747972
},
{
lastModifiedDate: 1479321748033
},
{
lastModifiedDate: 1479321748082
},
{
lastModifiedDate: 1479321748129
}
]
The last object should be first but it sets it to be last in the ui.
Upvotes: 0
Views: 591