diff --git a/src/output/html-reporter.ts b/src/output/html-reporter.ts
index 4c482c8..cb5ed62 100644
--- a/src/output/html-reporter.ts
+++ b/src/output/html-reporter.ts
@@ -270,10 +270,10 @@ ${noticesHtml}
@@ -356,7 +356,7 @@ function applyFilters() {
function sortBy(col) {
if (sortCol === col) { sortAsc = !sortAsc; } else { sortCol = col; sortAsc = col === 'package'; }
document.querySelectorAll('.findings-table thead th').forEach(th => th.classList.remove('sorted'));
- const colIndex = ['', 'package', 'severity', 'relationship'].indexOf(col);
+ const colIndex = ['', 'package', '', 'severity', 'relationship'].indexOf(col);
if (colIndex > 0) document.querySelectorAll('.findings-table thead th')[colIndex].classList.add('sorted');
const tbody = document.getElementById('findings-tbody');
@@ -458,10 +458,10 @@ function renderFindingRow(finding: SerializedFinding, idx: number): string {
return `
| ▶ |
${escapeHtml(finding.package)} ${escapeHtml(finding.version)} |
+ ${fixHtml} |
${escapeHtml(finding.severity)} |
${escapeHtml(finding.relationship)} |
${cveLinks} |
- ${fixHtml} |
|
|