Skip to content

Commit

Permalink
Merge pull request #912 from psyray/fix-detailed-scan
Browse files Browse the repository at this point in the history
Fix file directory popup not showing in detailed scan
  • Loading branch information
yogeshojha committed Oct 24, 2023
2 parents 26d4b34 + d6ba2fc commit 5e120bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/startScan/templates/startScan/detail_scan.html
Expand Up @@ -2223,7 +2223,7 @@ <h4 class="header-title mb-0"><span id="endpoint_change_count"><span class="spin

var directory_count_badge = '';
if (row['directories_count']){
directory_count_badge = `<span class="me-1 badge badge-soft-primary badge-link bs-tooltip" title="Directories" onclick="get_directory_modal(scan_id={{history.id}}, subdomain_id${row['id']}, subdomain_name'${row['name']}')">${row['directories_count']} <i class="far fa-folder"></i></span>`;
directory_count_badge = `<span class="me-1 badge badge-soft-primary badge-link bs-tooltip" title="Directories" onclick="get_directory_modal(scan_id={{history.id}}, subdomain_id=${row['id']}, subdomain_name='${row['name']}')">${row['directories_count']} <i class="far fa-folder"></i></span>`;
}

var subscan_count_badge = '';
Expand Down

0 comments on commit 5e120bd

Please sign in to comment.