aboutsummaryrefslogtreecommitdiffstats
path: root/old-ui/app/util.js
diff options
context:
space:
mode:
Diffstat (limited to 'old-ui/app/util.js')
-rw-r--r--old-ui/app/util.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/old-ui/app/util.js b/old-ui/app/util.js
index 3f8b4dcc3..962832ce7 100644
--- a/old-ui/app/util.js
+++ b/old-ui/app/util.js
@@ -231,6 +231,7 @@ function exportAsFile (filename, data) {
window.navigator.msSaveBlob(blob, filename)
} else {
const elem = window.document.createElement('a')
+ elem.target = '_blank'
elem.href = window.URL.createObjectURL(blob)
elem.download = filename
document.body.appendChild(elem)