From 9bd17572ab8e237427bfac32c0832528ea27a5fe Mon Sep 17 00:00:00 2001 From: cosa65 Date: Thu, 30 Nov 2023 09:41:29 -0300 Subject: [PATCH] Force reload on the embedding when download processed rds Signed-off-by: cosa65 --- src/utils/extraActionCreators/downloadProcessedMatrix.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/extraActionCreators/downloadProcessedMatrix.js b/src/utils/extraActionCreators/downloadProcessedMatrix.js index 98a61400e4..e3ad98e9fa 100644 --- a/src/utils/extraActionCreators/downloadProcessedMatrix.js +++ b/src/utils/extraActionCreators/downloadProcessedMatrix.js @@ -16,7 +16,7 @@ const downloadProcessedMatrix = (experimentId) => async (dispatch, getState) => method: embeddingMethod, } = getState().experimentSettings.processing.configureEmbedding.embeddingSettings; - await dispatch(loadEmbedding(experimentId, embeddingMethod)); + await dispatch(loadEmbedding(experimentId, embeddingMethod, true)); const taskName = 'DownloadAnnotSeuratObject';