Match the dashboard status chips to the articles page - #203
Merged
Conversation
The dashboard rendered recent-article statuses with the shadcn Badge, which only distinguishes success from secondary, so everything but Published came out grey. Share one status -> chip-class map between the dashboard and the articles list instead. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
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.
The recent-articles table on the dashboard rendered statuses with the shadcn
Badge, whose variants only distinguish success from secondary — so Scheduled and Draft both came out grey while the articles page showed them blue and yellow.frontend/src/lib/articleStatus.tsholds the single status → chip-class map (green Published, blue Scheduled, yellow Draft, slate fallback, with dark-mode variants).articleView.tsxuses the helper instead of its inline ternary chain.DashboardPage.tsxrenders the same span; the helper lowercases its input, so the dashboard's"scheduled"and the articles page's"Scheduled"resolve identically.Not changed here: the articles page relabels a future-dated
publishedarticle as Scheduled, while the dashboard shows the raw API status. Colors now agree per label, but that one mapping can still differ between the two pages.Verified with
tsc --noEmit.🤖 Generated with Claude Code