Update src/components/graph/dependency-graph-page.tsx

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
zenchantlive 2026-02-12 23:52:02 -08:00 committed by GitHub
parent 63ff7ef65c
commit 1d25d812b4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -510,7 +510,6 @@ export function DependencyGraphPage({
}
// SCOPED: Only the epic's own child tasks (no cross-epic workspace nodes)
const issueById = new Map(issues.map((issue) => [issue.id, issue]));
const visibleTasks = selectedEpicTasks
.filter((issue) => (!hideClosed ? true : issue.status !== 'closed'));