From bac14a77343b51a06f863dffd29bc3b7cd9b115a Mon Sep 17 00:00:00 2001 From: Rob Misiorowski Date: Thu, 2 Jun 2016 15:17:03 -0700 Subject: [PATCH] 1164 - displaying reviews in reverse chronological order --- js/collections/ratingCl.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/collections/ratingCl.js b/js/collections/ratingCl.js index 513532849..f9b46107c 100644 --- a/js/collections/ratingCl.js +++ b/js/collections/ratingCl.js @@ -17,6 +17,6 @@ module.exports = Backbone.Collection.extend({ return []; } - return response; + return response.reverse(); } }); \ No newline at end of file