From b87d1a65fedd207c1538b5f15424c42f238bcffd Mon Sep 17 00:00:00 2001 From: Dave Date: Tue, 3 Feb 2026 15:57:24 -0500 Subject: [PATCH] feature/IO-3550-Labor-Adjustment-Popover - Fix --- .../labor-allocations-adjustment-edit.component.jsx | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/client/src/components/labor-allocations-adjustment-edit/labor-allocations-adjustment-edit.component.jsx b/client/src/components/labor-allocations-adjustment-edit/labor-allocations-adjustment-edit.component.jsx index 0bf490db0..91f52a1fc 100644 --- a/client/src/components/labor-allocations-adjustment-edit/labor-allocations-adjustment-edit.component.jsx +++ b/client/src/components/labor-allocations-adjustment-edit/labor-allocations-adjustment-edit.component.jsx @@ -132,7 +132,13 @@ export function LaborAllocationsAdjustmentEdit({ ); return ( - setOpen(vis)} content={overlay} trigger="click"> + trigger?.parentElement || document.body} + open={open} + onOpenChange={(vis) => setOpen(vis)} + content={overlay} + trigger="click" + > {children} );