Paginated context: fetch the status before ancestors/descendants

merge-requests/1376/head
Alex Gleason 2022-05-13 17:25:58 -05:00
rodzic 0b8fbdfbb9
commit 9f8a74b376
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 7211D1F99744FBB7
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -216,10 +216,10 @@ export function fetchStatusWithContext(id) {
const features = getFeatures(getState().instance);
if (features.paginatedContext) {
await dispatch(fetchStatus(id));
const responses = await Promise.all([
dispatch(fetchAncestors(id)),
dispatch(fetchDescendants(id)),
dispatch(fetchStatus(id)),
]);
dispatch({