From 979c2bd6e10495f3fb8ac2ce5e9fafb37b2fdfcf Mon Sep 17 00:00:00 2001 From: LoadChange Date: Thu, 28 Feb 2019 16:06:59 +0800 Subject: [PATCH] fix: code indentation --- .../main/resources/static/console-fe/src/reducers/base.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/console/src/main/resources/static/console-fe/src/reducers/base.js b/console/src/main/resources/static/console-fe/src/reducers/base.js index fd86223d4..2097a6c63 100644 --- a/console/src/main/resources/static/console-fe/src/reducers/base.js +++ b/console/src/main/resources/static/console-fe/src/reducers/base.js @@ -21,7 +21,7 @@ const initialState = { }; const getState = () => dispatch => - request.get('v1/console/server/state').then(res => + request.get('v1/console/server/state').then(res => { dispatch({ type: GET_STATE, data: { @@ -29,8 +29,8 @@ const getState = () => dispatch => standaloneMode: res.standalone_mode, functionMode: res.function_mode, }, - }) - ); + }); + }); export default (state = initialState, action) => { switch (action.type) {