The task-detail Refine overlay used a raw onClick backdrop handler with a stopPropagation-wrapped inner modal, so the same click/touch sequence that opened Refine could bubble into the backdrop handler and close it right away; route it through the shared useOverlayDismiss contract instead so it behaves like every other dashboard modal.
- Compute refineOverlayDismissProps via useOverlayDismiss(handleCloseRefineModal) and spread it onto the refine overlay instead of a plain onClick handler
- Drop the redundant stopPropagation-only onClick from the inner .detail-refine-modal div now that the overlay itself no longer misfires on the opening interaction
- Update docs/dashboard-guide.md to document that the Refine modal (Board and List entry points) stays open until an explicit close or an enabled backdrop dismissal
- Add TaskDetailModal.refine.test.tsx regression coverage for the modal staying open across the opening interaction and honoring the dismiss-preference gate
- Add a patch changeset summarizing the fix for @runfusion/fusion release notes
Files changed:
.changeset/fn-7927-refine-modal.md | 7 +
docs/dashboard-guide.md | 8 +-
.../dashboard/app/components/TaskDetailModal.tsx | 12 +-
.../__tests__/TaskDetailModal.refine.test.tsx | 182 +++++++++++++++++++++
4 files changed, 201 insertions(+), 8 deletions(-)
Fusion-Task-Id: FN-7927
Fusion-Task-Lineage: c7e7cd4a-d103-47e6-93ce-6577147b4795
Co-authored-by: Fusion (runfusion.ai) <noreply@runfusion.ai>