Change the request file name from request to requests

This commit is contained in:
2023-06-13 14:57:21 +02:00
parent 8fee497491
commit ed66b34251

View File

@@ -10,7 +10,7 @@ function writeFile(id_form, func) {
}
element.setAttribute('href', 'data:text/plain;charset=utf-8,' + encodeURIComponent(textToSave));
element.setAttribute('download', 'request.txt');
element.setAttribute('download', 'requests.txt');
element.style.display = 'none';
document.body.appendChild(element);
element.click();