aboutsummaryrefslogtreecommitdiff
path: root/src/client/react/reducers/view.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/react/reducers/view.js')
-rw-r--r--src/client/react/reducers/view.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/react/reducers/view.js b/src/client/react/reducers/view.js
index 603f1d4..301a1cf 100644
--- a/src/client/react/reducers/view.js
+++ b/src/client/react/reducers/view.js
@@ -3,12 +3,12 @@ const schedule = (state = {}, action) => {
case 'VIEW/FETCH_SCHEDULE_REQUEST':
return {
...state,
- state: 'fetching',
+ state: 'FETCHING',
};
case 'VIEW/FETCH_SCHEDULE_SUCCESS':
return {
...state,
- state: 'finished',
+ state: 'FINISHED',
htmlStr: action.htmlStr,
};
default: