[WEB-6763] fix: date range dropdown clipped in sub-issues list #8809
This commit is contained in:
parent
c53968a7f8
commit
f0468a9173
1 changed files with 2 additions and 0 deletions
|
|
@ -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>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue