fix: ui fixes (#392)

* fix: ui fixes

* chore: kanban issue title length
This commit is contained in:
Aaryan Khandelwal 2023-03-07 20:27:16 +05:30 committed by GitHub
parent cadb67a018
commit 88fca3c67c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 42 additions and 13 deletions

View file

@ -10,7 +10,7 @@ import projectService from "services/project.service";
// ui
import { Avatar, CustomSearchSelect } from "components/ui";
// icons
import { UserCircleIcon, UserIcon } from "@heroicons/react/24/outline";
import { UserCircleIcon } from "@heroicons/react/24/outline";
import User from "public/user.png";
// fetch-keys
import { PROJECT_MEMBERS } from "constants/fetch-keys";
@ -54,7 +54,6 @@ export const SidebarLeadSelect: React.FC<Props> = ({ value, onChange }) => {
return (
<div className="flex items-center justify-start gap-1">
<div className="flex w-40 items-center justify-start gap-2">
<UserCircleIcon className="h-5 w-5 text-gray-400" />
<span>Lead</span>
@ -85,6 +84,8 @@ export const SidebarLeadSelect: React.FC<Props> = ({ value, onChange }) => {
</div>
}
options={options}
height="md"
position="right"
onChange={onChange}
/>
</div>

View file

@ -71,6 +71,8 @@ export const SidebarMembersSelect: React.FC<Props> = ({ value, onChange }) => {
}
options={options}
onChange={onChange}
height="md"
position="right"
multiple
/>
</div>