Fix download report URL in ChillMainBundle export

An extra "?" was erroneously appended to the download report URL in ChillMainBundle's export feature. This update removes the extraneous character to ensure the function works as expected with the correct URL format.
This commit is contained in:
Julien Fastré 2024-06-24 14:23:47 +02:00
parent d28cec3786
commit f8fa96d836
Signed by: julienfastre
GPG Key ID: BDE2190974723FCB

View File

@ -12,5 +12,5 @@ window.addEventListener("DOMContentLoaded", function(e) {
container = document.querySelector("#download_container")
;
download_report(export_generate_url + "?" + query.toString(), container);
download_report(export_generate_url + query.toString(), container);
});