From 65421194026416b83caa189e4404e371bd540001 Mon Sep 17 00:00:00 2001 From: Qstick Date: Thu, 8 Sep 2022 20:02:18 -0500 Subject: [PATCH] Fixed: Collections not sorting properly on Index Fixes #7577 --- frontend/src/Store/Actions/movieIndexActions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/Store/Actions/movieIndexActions.js b/frontend/src/Store/Actions/movieIndexActions.js index adce97c72..ec243aa8c 100644 --- a/frontend/src/Store/Actions/movieIndexActions.js +++ b/frontend/src/Store/Actions/movieIndexActions.js @@ -227,7 +227,7 @@ export const defaultState = { collection: function(item) { const { collection ={} } = item; - return collection.name; + return collection.title; }, originalLanguage: function(item) {