Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions dashboard/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ <h1>em-dash</h1>
<span class="nav-icon">!</span><span class="nav-label">Findings</span>
<span class="nav-badge" id="nav-findings-badge"></span>
</a>
<a class="nav-item" data-section="quick-wins" href="#">
<span class="nav-icon">⚡</span><span class="nav-label">Quick Wins</span>
</a>
<a class="nav-item" data-section="checklist" href="#">
<span class="nav-icon">&check;</span><span class="nav-label">Checklist</span>
<span class="nav-badge" id="nav-checklist-badge"></span>
Expand Down Expand Up @@ -142,6 +145,17 @@ <h2>Findings</h2>
</div>
</section>

<!-- Quick Wins -->
<section class="page" id="page-quick-wins">
<div class="section">
<div class="section-header">
<h2>Quick Wins</h2>
</div>
<p class="section-desc">Findings that take &lt;30 min to fix and improve multiple compliance scores. Sorted by impact/effort ratio. Prioritizes code_grep checks in 4+ frameworks for the fastest compliance gains.</p>
<div class="quick-wins-list" id="quick-wins-list"></div>

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Quick Wins list stays empty

When a user opens Quick Wins, the generic navigation activates this page, but no renderer or data-loading path populates quick-wins-list, causing the view to show only its heading and description instead of any findings.

</div>
</section>

<!-- Checklist -->
<section class="page" id="page-checklist">
<div class="section">
Expand Down