[WEB-1217] style: fix inconsistency in height of project type and lead dropdown in create project modal. (#4400)

This commit is contained in:
Prateek Shourya 2024-05-08 13:42:40 +05:30 committed by GitHub
parent 6793b9e6fa
commit 6efa135e9e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -365,7 +365,7 @@ export const CreateProjectForm: FC<Props> = observer((props) => {
render={({ field: { value, onChange } }) => {
if (value === undefined || value === null || typeof value === "string")
return (
<div className="h-7 flex-shrink-0" tabIndex={5}>
<div className="flex-shrink-0" tabIndex={5}>
<MemberDropdown
value={value}
onChange={(lead) => onChange(lead === value ? null : lead)}