about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--app/assets/javascripts/components/reducers/timelines.jsx6
1 files changed, 4 insertions, 2 deletions
diff --git a/app/assets/javascripts/components/reducers/timelines.jsx b/app/assets/javascripts/components/reducers/timelines.jsx
index b6a14a649..65bccb44d 100644
--- a/app/assets/javascripts/components/reducers/timelines.jsx
+++ b/app/assets/javascripts/components/reducers/timelines.jsx
@@ -78,12 +78,14 @@ function normalizeStatus(state, status) {
 };
 
 function normalizeTimeline(state, timeline, statuses) {
+  let ids = Immutable.List([]);
+
   statuses.forEach((status, i) => {
     state = normalizeStatus(state, status);
-    state = state.setIn([timeline, i], status.get('id'));
+    ids   = ids.set(i, status.get('id'));
   });
 
-  return state;
+  return state.set(timeline, ids);
 };
 
 function appendNormalizedTimeline(state, timeline, statuses) {