perf: order
gitea/salix-front/pipeline/pr-test This commit looks good Details

This commit is contained in:
Alex Moreno 2025-01-07 08:26:33 +01:00
parent d8c3e6bce7
commit 97fee8d1d0
1 changed files with 2 additions and 2 deletions

View File

@ -128,11 +128,11 @@ export function useArrayData(key = useRoute().meta.moduleName, userOptions) {
const res = updateStateParams(response.data); const res = updateStateParams(response.data);
if (res?.redirect) return; if (res?.redirect) return;
} }
processData(response.data, { map: !!store.mapKey, append });
store.isLoading = false; store.isLoading = false;
canceller = null; canceller = null;
processData(response.data, { map: !!store.mapKey, append });
return response; return response;
} }