Client: minor fix

This commit is contained in:
Sam
2018-06-11 19:15:38 +02:00
parent 859f690ba4
commit 489a123671
4 changed files with 6 additions and 6 deletions

View File

@ -43,7 +43,7 @@ export const addActivity = form => dispatch => FitTrackeeApi
} else {
dispatch(setError(`activities: ${ret.message}`))
}
dispatch(setLoading())
dispatch(setLoading(false))
})
.catch(error => dispatch(setError(`activities: ${error}`)))
@ -117,7 +117,7 @@ export const editActivity = form => dispatch => FitTrackeeGenericApi
} else {
dispatch(setError(`activities: ${ret.message}`))
}
dispatch(setLoading())
dispatch(setLoading(false))
})
.catch(error => dispatch(setError(`activities: ${error}`)))

View File

@ -13,8 +13,9 @@ export const setError = message => ({
message,
})
export const setLoading = () => ({
export const setLoading = loading => ({
type: 'SET_LOADING',
loading
})
export const getData = (target, data) => dispatch => {