Fix double click to report

This commit is contained in:
2023-06-06 10:24:06 +02:00
parent eed8f12e4a
commit 8e29948809
4 changed files with 5 additions and 3 deletions

View File

@@ -32,7 +32,7 @@ $(document).ready(function () {
});
// Show file with doubleclick
$("#file-table tbody").on("dblclick", "tr", function () {
showFile($(this).attr("id"));
location.href="/results/report/"+ $(this).attr("id");
});
$(document).ajaxStart(function () {
$("body").addClass("ajaxLoading");