Skip to content
Snippets Groups Projects
Commit c8e4b9c6 authored by Eugen Rochko's avatar Eugen Rochko
Browse files

No loading bars for cards, no failure if it 404s (that's expected)

parent f0de621e
No related branches found
No related tags found
No related merge requests found
......@@ -11,6 +11,11 @@ export function fetchStatusCard(id) {
api(getState).get(`/api/v1/statuses/${id}/card`).then(response => {
dispatch(fetchStatusCardSuccess(id, response.data));
}).catch(error => {
if (error.response.status === 404) {
// This is fine
return;
}
dispatch(fetchStatusCardFail(id, error));
});
};
......@@ -19,7 +24,8 @@ export function fetchStatusCard(id) {
export function fetchStatusCardRequest(id) {
return {
type: STATUS_CARD_FETCH_REQUEST,
id
id,
skipLoading: true
};
};
......@@ -27,7 +33,8 @@ export function fetchStatusCardSuccess(id, card) {
return {
type: STATUS_CARD_FETCH_SUCCESS,
id,
card
card,
skipLoading: true
};
};
......@@ -35,6 +42,7 @@ export function fetchStatusCardFail(id, error) {
return {
type: STATUS_CARD_FETCH_FAIL,
id,
error
error,
skipLoading: true
};
};
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment