From 4b6d0e65a8770a8dd76812eb274b8c68cca4b5f2 Mon Sep 17 00:00:00 2001 From: Simon Briere Date: Tue, 30 Apr 2024 09:36:04 -0400 Subject: [PATCH] Refs #2. Fixed session assets download not working in WebAssembly --- Frontend/DashboardsViewer/content/delegates/SessionDelegate.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Frontend/DashboardsViewer/content/delegates/SessionDelegate.qml b/Frontend/DashboardsViewer/content/delegates/SessionDelegate.qml index 9457432..ead6aea 100644 --- a/Frontend/DashboardsViewer/content/delegates/SessionDelegate.qml +++ b/Frontend/DashboardsViewer/content/delegates/SessionDelegate.qml @@ -260,7 +260,7 @@ BaseDelegate { fileDownloader.filename = model[model.dataSource.fieldDisplayName] //DownloadFile returnes a null object in WebASM - fileDownloader.downloadParticipantArchive(model[model.dataSource.fieldIdName]) + fileDownloader.downloadSessionArchive(model[model.dataSource.fieldIdName]) } else { //console.log('WebAssembly is not supported'); saveFileDialog.open();