mirror of
https://github.com/alkimake/paperclip.git
synced 2026-06-19 20:10:39 +09:00
fix: re-open panel when childIssues changes to prevent stale sub-task list
Add childIssues to the useEffect dependency array so the Properties panel is refreshed whenever the child issue list updates (e.g. an agent creates or deletes a sub-task while the panel is open). Previously the panel kept the snapshot from the initial render of the parent issue. Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
parent
7623f679cf
commit
42989115a7
1 changed files with 1 additions and 1 deletions
|
|
@ -989,7 +989,7 @@ export function IssueDetail() {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
return () => closePanel();
|
return () => closePanel();
|
||||||
}, [issue]); // eslint-disable-line react-hooks/exhaustive-deps
|
}, [issue, childIssues]); // eslint-disable-line react-hooks/exhaustive-deps
|
||||||
|
|
||||||
const inboxQuickArchiveArmedRef = useRef(false);
|
const inboxQuickArchiveArmedRef = useRef(false);
|
||||||
const canQuickArchiveFromInbox =
|
const canQuickArchiveFromInbox =
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue