feat(faq): add explanatory tooltips to FreshnessBadge states - #225
Open
MohammedSameerInamdar wants to merge 1 commit into
Open
feat(faq): add explanatory tooltips to FreshnessBadge states#225MohammedSameerInamdar wants to merge 1 commit into
MohammedSameerInamdar wants to merge 1 commit into
Conversation
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.
What changed
Adds a
titleattribute to each state of the FreshnessBadge component (Verified, Under review, Update requested, Nearing expiry) so users can hover over a badge to see a plain-language explanation of what it means. Currently the badges show only an icon and short label with no context for what "under review" or "verified" actually signifies to the reader.Related issue
No linked issue — this is a self-proposed feature (confirmed with program contact as no open issues were unclaimed at time of contribution).
Type of change
Area affected
/admin/*)/community— posts, comments, auto-answer)CI verification
cd apps/backend && npx tsc --noEmitexits 0cd apps/backend && npx vitest run— all tests passcd apps/frontend && npx tsc --noEmitexits 0cd apps/frontend && npx vitest run— all tests passpnpm run lint— 0 errors (152 warnings is the baseline)main, no merge commitsNotes for reviewer
Could not verify the tooltip visually in a running browser — local MongoDB Atlas instance has no seeded FAQ data and registration is currently disabled, so no FAQ cards were available to hover over. Verified correctness instead via a component-level Vitest test (FreshnessBadge.test.tsx) asserting the
titleattribute renders with the correct text for all badge states. The pre-existing lint error in ai-client.service.ts (line 623) is unrelated to this change.