[WEB-6763] fix: date range dropdown clipped in sub-issues list #8809

This commit is contained in:
b-saikrishnakanth 2026-03-27 16:01:24 +05:30 committed by GitHub
parent c53968a7f8
commit f0468a9173
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -139,6 +139,7 @@ export const SubIssuesListItemProperties = observer(function SubIssuesListItemPr
from: getDate(issue.start_date) || undefined, from: getDate(issue.start_date) || undefined,
to: getDate(issue.target_date) || undefined, to: getDate(issue.target_date) || undefined,
}} }}
placement="top-end"
onSelect={(range) => { onSelect={(range) => {
handleStartDate(range?.from ?? null); handleStartDate(range?.from ?? null);
handleTargetDate(range?.to ?? null); handleTargetDate(range?.to ?? null);
@ -154,6 +155,7 @@ export const SubIssuesListItemProperties = observer(function SubIssuesListItemPr
showTooltip showTooltip
customTooltipHeading="Date Range" customTooltipHeading="Date Range"
renderPlaceholder={false} renderPlaceholder={false}
renderInPortal
/> />
</div> </div>
</WithDisplayPropertiesHOC> </WithDisplayPropertiesHOC>