🐛 fix(vscode): 详情属性格 data 引用变化不再清掉选中导致 PR 打不开

This commit is contained in:
2026-08-05 14:39:04 +08:00
parent a9e4d6e9b9
commit 81ab00bdba
2 changed files with 42 additions and 33 deletions
@@ -491,7 +491,37 @@ export function IssueDetailPanel({
[onResumeSession, onResumeReviewSession, onResumeTestSession, onStartTestSession, onOpenFile, onImplement, onOpenPr, onGeneratePrDiffSummary, onOpenWorktree, onDeleteWorktree, onMergeBranch, onCloseSessionTab, onStartBrainstormSession, onOpenLogs, issue, locked, lockTitle, globalAutoReview, prDiffSummaryRunning, profiles],
)
if (!issue) {
const data = useMemo<Record<string, unknown> | null>(() => {
if (!issue)
return null
return {
column: issue.column,
sessionId: issue.sessionId ?? null,
implementSessionId: issue.implementSessionId ?? null,
reviewSessionId: issue.reviewSessionId ?? null,
testSessionId: issue.testSessionId ?? null,
autoReview: issue.autoReview ?? globalAutoReview,
color: issue.color ?? null,
// 展示/选中值按 basename 映射到本机 profiles,避免跨机绝对路径变成「自定义」项。
brainstormProfilePath: matchProfileOption(issue.brainstormProfilePath, profiles) || null,
profilePath: matchProfileOption(issue.profilePath, profiles) || null,
testProfilePath: matchProfileOption(issue.testProfilePath, profiles) || null,
specFile: issue.specFile ?? null,
planFile: issue.planFile ?? null,
prDiffFile: issue.prDiffFile ?? null,
pr: issue.pr
? `${issue.pr}${issue.prMerged ? '(已合并)' : ''}`
: null,
branch: issue.branch ?? null,
worktreePath: issue.worktreePath ?? null,
}
}, [
issue,
globalAutoReview,
profiles,
])
if (!issue || !data) {
return (
<div className="flex h-full items-center justify-center border-t border-[var(--vscode-panel-border)] p-3 text-xs opacity-60">
@@ -499,28 +529,6 @@ export function IssueDetailPanel({
)
}
const data: Record<string, unknown> = {
column: issue.column,
sessionId: issue.sessionId ?? null,
implementSessionId: issue.implementSessionId ?? null,
reviewSessionId: issue.reviewSessionId ?? null,
testSessionId: issue.testSessionId ?? null,
autoReview: issue.autoReview ?? globalAutoReview,
color: issue.color ?? null,
// 展示/选中值按 basename 映射到本机 profiles,避免跨机绝对路径变成「自定义」项。
brainstormProfilePath: matchProfileOption(issue.brainstormProfilePath, profiles) || null,
profilePath: matchProfileOption(issue.profilePath, profiles) || null,
testProfilePath: matchProfileOption(issue.testProfilePath, profiles) || null,
specFile: issue.specFile ?? null,
planFile: issue.planFile ?? null,
prDiffFile: issue.prDiffFile ?? null,
pr: issue.pr
? `${issue.pr}${issue.prMerged ? '(已合并)' : ''}`
: null,
branch: issue.branch ?? null,
worktreePath: issue.worktreePath ?? null,
}
return (
<div className="flex h-full min-h-0 flex-col gap-3 border-t border-[var(--vscode-panel-border)] p-3">
<div className="flex items-center gap-3">
@@ -608,6 +616,7 @@ export function IssueDetailPanel({
<div className="min-h-0 flex-1">
<PropertyGrid
key={issue.number}
schema={schema}
data={data}
hideToolbar