import React from "react"; import { observer } from "mobx-react-lite"; // components import { ProjectMemberDropdown } from "components/dropdowns"; // types import { TIssue } from "@plane/types"; type Props = { issue: TIssue; onClose: () => void; onChange: (issue: TIssue, data: Partial, updates: any) => void; disabled: boolean; }; export const SpreadsheetAssigneeColumn: React.FC = observer((props: Props) => { const { issue, onChange, disabled, onClose } = props; return (
{ onChange( issue, { assignee_ids: data }, { changed_property: "assignees", change_details: data, } ); }} projectId={issue?.project_id} disabled={disabled} multiple placeholder="Assignees" buttonVariant={ issue?.assignee_ids && issue.assignee_ids.length > 0 ? "transparent-without-text" : "transparent-with-text" } buttonClassName="text-left" buttonContainerClassName="w-full" onClose={onClose} />
); });