From 4ffa74cbe6b5415b11ace8c4c2f32bce40a2e247 Mon Sep 17 00:00:00 2001 From: Thomas Date: Wed, 4 Apr 2018 16:42:54 -0700 Subject: Change double-quotes to single-quotes --- old-ui/app/util.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'old-ui/app') diff --git a/old-ui/app/util.js b/old-ui/app/util.js index 30ae308d2..962832ce7 100644 --- a/old-ui/app/util.js +++ b/old-ui/app/util.js @@ -231,7 +231,7 @@ function exportAsFile (filename, data) { window.navigator.msSaveBlob(blob, filename) } else { const elem = window.document.createElement('a') - elem.target = "_blank" + elem.target = '_blank' elem.href = window.URL.createObjectURL(blob) elem.download = filename document.body.appendChild(elem) -- cgit v1.2.3