summaryrefslogtreecommitdiffstats
path: root/client
diff options
context:
space:
mode:
authorLauri Ojansivu <x@xet7.org>2020-05-28 18:51:30 +0300
committerGitHub <noreply@github.com>2020-05-28 18:51:30 +0300
commita47ca598e750eab86bc5d5648b50dc029428ca11 (patch)
tree05cb38e6bf8938798fb56b8e19973abd7f7e849b /client
parent1cfb6eee4beadbdb84f5a11eb040f63369903e75 (diff)
parentc9a28db3ab5650178c933fc3d2284958dd0fd84d (diff)
downloadwekan-a47ca598e750eab86bc5d5648b50dc029428ca11.tar.gz
wekan-a47ca598e750eab86bc5d5648b50dc029428ca11.tar.bz2
wekan-a47ca598e750eab86bc5d5648b50dc029428ca11.zip
Merge pull request #3131 from gvespignani70/feature/new-API-cardsByCustomField
Added an API to get the cards for a specific custom field value
Diffstat (limited to 'client')
-rw-r--r--client/lib/exportHTML.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/lib/exportHTML.js b/client/lib/exportHTML.js
index b3c8d011..0cca4b04 100644
--- a/client/lib/exportHTML.js
+++ b/client/lib/exportHTML.js
@@ -2,7 +2,7 @@ const JSZip = require('jszip');
window.ExportHtml = Popup => {
const saveAs = function(blob, filename) {
- let dl = document.createElement('a');
+ const dl = document.createElement('a');
dl.href = window.URL.createObjectURL(blob);
dl.onclick = event => document.body.removeChild(event.target);
dl.style.display = 'none';