fix: restore readable presentation graph language

This commit is contained in:
lda
2026-07-12 13:51:10 +07:00 Verified
parent 92ba1dcf70
commit d99f844f9c
9 changed files with 139 additions and 40 deletions
@@ -22,9 +22,9 @@ export const NodeSpotlight = ({ nodeId, close }: NodeSpotlightProps) => {
const node = presentationNodes.find((candidate) => candidate.id === nodeId);
const label = node && "label" in node
? node.label
: node?.id === "review_issues"
: nodeId === "review_issues"
? "Review issues"
: node?.id ?? nodeId;
: nodeId;
useEffect(() => {
const previouslyFocused = document.activeElement instanceof HTMLElement