fix(inbox): Show real PR status in inbox list rows#2056
Open
Conversation
The inbox list rows passed skipStatusFetch=true to ReportImplementationPrLink to avoid N parallel `gh` calls, so a merged PR still rendered as "open" green in the list while the detail pane showed it as merged. Drop the skip path so the list and detail use the same shared badge with the same fetched state, and render a neutral gray during the initial load instead of pretending the PR is open. Generated-By: PostHog Code Task-Id: ee5c062f-bf44-4676-9316-f8914a5e0a6d
Contributor
|
Reviews (1): Last reviewed commit: "fix(inbox): show real PR status in inbox..." | Re-trigger Greptile |
sortafreel
approved these changes
May 7, 2026
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
In the Inbox, the implementation-PR badge in the list rows looked like an "open" PR even when the PR had been merged or closed, while the same badge in the report detail pane (and in the implementation-task bar) correctly showed merged/closed. So the same PR appeared in two states at once, depending on where you looked.
SlackHog: https://posthog.slack.com/archives/C09SK2PAGKF/p1778066950541599
Changes
Always fetch status of PR.