Skip to content
Snippets Groups Projects
Commit ea759264 authored by rcsm17's avatar rcsm17
Browse files

fixed downloaded simulation zip name

parent 32c71017
Branches simulation
No related tags found
No related merge requests found
...@@ -1276,7 +1276,7 @@ function downloadSimResults() { ...@@ -1276,7 +1276,7 @@ function downloadSimResults() {
const link = document.createElement("a"); const link = document.createElement("a");
link.href = href; link.href = href;
link.setAttribute("download", "ob_sim_all.zip"); link.setAttribute("download", selJobTitle + ".zip");
document.body.appendChild(link); document.body.appendChild(link);
link.click(); link.click();
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment