Conversation
…how per-category breakdown (#2464) The people table was not accounting for HIPAA training in the task completion totals, so employees appeared fully complete even when HIPAA training was pending. Also adds individual category counts (Policies, Training, HIPAA) to the tasks column for easier at-a-glance tracking, and fixes the overview chart bar to include HIPAA in the completed segment. Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
1 Skipped Deployment
|
PR SummaryMedium Risk Overview On the server side, task completion is recalculated into a richer Reviewed by Cursor Bugbot for commit 8ac2416. Bugbot is set up for automated code reviews on this repo. Configure here. |
|
🎉 This PR is included in version 3.16.1 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit 8ac2416. Configure here.
| tc.completedAt !== null, | ||
| ) | ||
| ? 1 | ||
| : 0; |
There was a problem hiding this comment.
HIPAA completion unreachable when training step disabled
Medium Severity
The trainingCompletions query is gated by securityTrainingStepEnabled, but hipaaCompleted is derived from that same trainingCompletions array. When securityTrainingStepEnabled is false, trainingCompletions is empty, so hipaaCompleted will always be 0 — yet totalHipaaTraining is still 1 when hasHipaaFramework is true. This makes HIPAA tasks permanently incomplete in the progress bar. The dashboard in EmployeesOverview.tsx correctly fetches HIPAA completions independently of that flag.
Additional Locations (1)
Reviewed by Cursor Bugbot for commit 8ac2416. Configure here.


This is an automated pull request to release the candidate branch into production, which will trigger a deployment.
It was created by the [Production PR] action.