Skip to content

Commit 1d7f30c

Browse files
authored
Merge pull request #161 from metalbear-co/fix-focus-alignment
fixed visual bug in focued mode
2 parents 22b0c14 + 519f849 commit 1d7f30c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/visualization-shop/visualization-frontend/src/app/VisualizationPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3355,7 +3355,7 @@ export default function VisualizationPage({ useQueueSplittingMock, useDbBranchMo
33553355
// Computed AFTER pg-branch and queue-split placement so it tracks the true cluster bottom.
33563356
// localGap must be > localPadTop + zonePadBot (92 + 44 = 136) to avoid zone overlap.
33573357
const clusterBottomCandidates = [...positions.entries()]
3358-
.filter(([id]) => id !== layerId && id !== agentId)
3358+
.filter(([id]) => id !== layerId)
33593359
.map(([, p]) => p.y + nodeHeight);
33603360
const maxClusterBottom = clusterBottomCandidates.length
33613361
? Math.max(...clusterBottomCandidates)

0 commit comments

Comments
 (0)