fix: UI bug fixes, themed confirms, mobile nav + backend hardening#146
Merged
Conversation
…ies table Found during a full UI walkthrough + source audit. All changes are frontend-only and verified against the live backend (Vite dev proxy + Playwright) with the existing vitest suite passing. - dashboard: the "Live now" session title linked to /files/<id>, a route that doesn't exist, so clicking it silently bounced the operator back to the Dashboard. Use the supported /files?file_id=<id> deep link (the same pattern every other file link uses). - command palette: "Path mappings", "Secrets", "VirusTotal" and "Libraries" pointed at settings sections removed in Stage 25, so selecting them silently dumped the operator on the Dashboard settings section. Realign the palette catalog with the current SettingsPage rail and surface the previously-unreachable Dashboard/Proactive/Updates sections. - libraries: the "Last scan" column was too narrow, so the per-row "Scan" button overflowed its card and rendered as just "S". Rebalance the column widths and let the timestamp truncate so the action stays fully visible; add an explanatory tooltip on the always-empty Size column. - dashboard: the scan split-button's library picker stayed open after a selection (inconsistent with "Scan all", which closes). Close it on pick. - rules: the evaluate-all failure message used a hardcoded text-rose-400 instead of the --sev-error theme token, so it ignored dark mode/accent. Tests updated to assert the corrected behavior. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
4 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Five confirmed, user-facing bugs found during a full UI walkthrough + source audit. Frontend-only, verified against the live backend (Vite dev proxy + Playwright); vitest suite green.
/files/<id>(no such route) bounced to the Dashboard; now uses the working/files?file_id=<id>deep link.text-rose-400instead of the--sev-errortoken; fixed.Tests updated to assert the corrected behavior.
Follow-up improvements (themed confirm dialogs, mobile nav, backend hardening) are in #147.
🤖 Generated with Claude Code