mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
[WEB-1217] style: fix inconsistency in height of project type and lead dropdown in create project modal. (#4400)
This commit is contained in:
parent
6793b9e6fa
commit
6efa135e9e
@ -365,7 +365,7 @@ export const CreateProjectForm: FC<Props> = observer((props) => {
|
|||||||
render={({ field: { value, onChange } }) => {
|
render={({ field: { value, onChange } }) => {
|
||||||
if (value === undefined || value === null || typeof value === "string")
|
if (value === undefined || value === null || typeof value === "string")
|
||||||
return (
|
return (
|
||||||
<div className="h-7 flex-shrink-0" tabIndex={5}>
|
<div className="flex-shrink-0" tabIndex={5}>
|
||||||
<MemberDropdown
|
<MemberDropdown
|
||||||
value={value}
|
value={value}
|
||||||
onChange={(lead) => onChange(lead === value ? null : lead)}
|
onChange={(lead) => onChange(lead === value ? null : lead)}
|
||||||
|
Loading…
Reference in New Issue
Block a user