Hide more non-essential loading bars

This commit is contained in:
Eugen Rochko 2017-01-19 11:23:24 +01:00
parent 98560b232a
commit 8d0284f8d9
2 changed files with 25 additions and 17 deletions

View file

@ -508,21 +508,24 @@ export function fetchRelationships(account_ids) {
export function fetchRelationshipsRequest(ids) {
return {
type: RELATIONSHIPS_FETCH_REQUEST,
ids
ids,
skipLoading: true
};
};
export function fetchRelationshipsSuccess(relationships) {
return {
type: RELATIONSHIPS_FETCH_SUCCESS,
relationships
relationships,
skipLoading: true
};
};
export function fetchRelationshipsFail(error) {
return {
type: RELATIONSHIPS_FETCH_FAIL,
error
error,
skipLoading: true
};
};