forked from github/plane
fix: date picker z visibility
This commit is contained in:
parent
c9517610da
commit
67b16f9c2e
@ -77,7 +77,7 @@ export const SpreadsheetColumn: React.FC<Props> = (props) => {
|
||||
const propertyDetails = SPREADSHEET_PROPERTY_DETAILS[property];
|
||||
|
||||
return (
|
||||
<div className="relative flex flex-col h-max w-full max-w-max bg-custom-background-100">
|
||||
<div className="flex flex-col h-max w-full max-w-max bg-custom-background-100">
|
||||
<div className="flex items-center min-w-[8rem] px-4 py-1 text-sm font-medium z-[1] h-11 w-full sticky top-0 bg-custom-background-90 border border-l-0 border-custom-border-100">
|
||||
<CustomMenu
|
||||
customButtonClassName="!w-full"
|
||||
|
@ -47,7 +47,7 @@ export const ViewDueDateSelect: React.FC<Props> = ({
|
||||
position={tooltipPosition}
|
||||
>
|
||||
<div
|
||||
className={`group flex-shrink-0 relative max-w-[6.5rem] ${className} ${
|
||||
className={`group flex-shrink-0 max-w-[6.5rem] ${className} ${
|
||||
issue.target_date === null
|
||||
? ""
|
||||
: issue.target_date < new Date().toISOString()
|
||||
|
@ -40,7 +40,7 @@ export const ViewStartDateSelect: React.FC<Props> = ({
|
||||
tooltipContent={issue.start_date ? renderShortDateWithYearFormat(issue.start_date) ?? "N/A" : "N/A"}
|
||||
position={tooltipPosition}
|
||||
>
|
||||
<div className={`group flex-shrink-0 relative max-w-[6.5rem] ${className}`}>
|
||||
<div className={`group flex-shrink-0 max-w-[6.5rem] ${className}`}>
|
||||
<CustomDatePicker
|
||||
value={issue?.start_date}
|
||||
onChange={onChange}
|
||||
|
Loading…
Reference in New Issue
Block a user