I would like to sort the data returned from Firebase by the Expiration Date, I am currently doing the following:
this.Collection = document.collection('values', ref => ref.orderBy('data_vencimento'));
But as can be seen in the image below, you are not ordering correctly, are there other ways to sort by date? Can I do a sort () on Observable returned from Firebase?