From c8802598ce8f2387f25f50efce018c8d73899b7b Mon Sep 17 00:00:00 2001 From: Sean Corrales Date: Tue, 30 Oct 2018 16:48:00 -0700 Subject: [PATCH] Fixing missing data when loading bundle page. (#106) --- src/store/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/store/index.js b/src/store/index.js index f39e454..60551c7 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -57,7 +57,7 @@ export default new Vuex.Store({ }) function getById (array, id) { - return array.find(x => x.id === id) + return array.find(x => x.id == id) } function loadSeasons () {