We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7392ab6 commit 35fb18dCopy full SHA for 35fb18d
src/redux/data/exports/thunks.js
@@ -113,6 +113,8 @@ export function renderSavedExport(id) {
113
//dispatch(setIsLoading(true));
114
//dispatch(setError(null));
115
116
+ dispatch(loadingData("exportCSV", true));
117
+
118
const state = getState();
119
const projectId = state.data.sessionData.session.project_id;
120
const jwt = state.data.sessionData.session.token;
@@ -129,6 +131,8 @@ export function renderSavedExport(id) {
129
131
130
132
await downloadFile(renderedResponse);
133
134
+ dispatch(loadingData("exportCSV", false));
135
136
//dispatch(setIsLoading(false));
137
//dispatch(addNewSavedExport(result));
138
};
0 commit comments