Fixing issue #626

The status is not showing anymore after clicking on it
This commit is contained in:
Rakib Hasan 2017-02-19 07:32:35 +00:00
parent 9e99b8c068
commit 9e0dbb7337
2 changed files with 4 additions and 2 deletions

View file

@ -28,7 +28,6 @@ export function fetchStatus(id) {
const skipLoading = getState().getIn(['statuses', id], null) !== null; const skipLoading = getState().getIn(['statuses', id], null) !== null;
dispatch(fetchContext(id)); dispatch(fetchContext(id));
dispatch(fetchStatusCard(id));
if (skipLoading) { if (skipLoading) {
return; return;
@ -102,7 +101,10 @@ export function fetchContext(id) {
api(getState).get(`/api/v1/statuses/${id}/context`).then(response => { api(getState).get(`/api/v1/statuses/${id}/context`).then(response => {
dispatch(fetchContextSuccess(id, response.data.ancestors, response.data.descendants)); dispatch(fetchContextSuccess(id, response.data.ancestors, response.data.descendants));
dispatch(fetchStatusCard(id));
}).catch(error => { }).catch(error => {
dispatch(deleteStatusSuccess(id));
dispatch(deleteFromTimelines(id));
dispatch(fetchContextFail(id, error)); dispatch(fetchContextFail(id, error));
}); });
}; };

View file

@ -117,7 +117,7 @@ const Status = React.createClass({
if (status === null) { if (status === null) {
return ( return (
<Column> <Column>
<LoadingIndicator /> <ColumnBackButton />
</Column> </Column>
); );
} }