From 6d89edc4f772b10b61f9747482a155666077f20b Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Tue, 20 Sep 2016 23:18:00 +0200 Subject: Fix #47 by renaming TIMELINE_SET action to TIMELINE_REFRESH_SUCCESS --- app/assets/javascripts/components/reducers/timelines.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'app/assets/javascripts/components/reducers') diff --git a/app/assets/javascripts/components/reducers/timelines.jsx b/app/assets/javascripts/components/reducers/timelines.jsx index 2bc4e6eb6..e6a1d0f11 100644 --- a/app/assets/javascripts/components/reducers/timelines.jsx +++ b/app/assets/javascripts/components/reducers/timelines.jsx @@ -1,5 +1,5 @@ import { - TIMELINE_SET, + TIMELINE_REFRESH_SUCCESS, TIMELINE_UPDATE, TIMELINE_DELETE } from '../actions/timelines'; @@ -139,7 +139,7 @@ function normalizeContext(state, status, ancestors, descendants) { export default function timelines(state = initialState, action) { switch(action.type) { - case TIMELINE_SET: + case TIMELINE_REFRESH_SUCCESS: return normalizeTimeline(state, action.timeline, Immutable.fromJS(action.statuses)); case TIMELINE_UPDATE: return updateTimeline(state, action.timeline, Immutable.fromJS(action.status)); -- cgit