Parcourir la source

Merge branch 'refs/heads/dev-2.19.0' into dev

Lita-Tako il y a 4 mois
Parent
commit
74863ce733
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      src/utils/systemUtils.js

+ 1 - 1
src/utils/systemUtils.js

@@ -188,7 +188,7 @@ export const getQueryParams = (name) => {
188 188
 export const downloadLink = (url) => {
189 189
 	const a = document.createElement('a')
190 190
 	a.href = url
191
-	a.download = fileName || 'download'
191
+	a.download = 'download'
192 192
 	document.body.appendChild(a)
193 193
 	a.click()
194 194
 	document.body.removeChild(a)