forked from github/plane
0165abab3e
* chore: events naming convention changed * chore: track element added for project related events * chore: track element added for cycle related events * chore: track element added for module related events * chore: issue related events updated * refactor: event tracker store * refactor: event-tracker store * fix: posthog changes --------- Co-authored-by: sriram veeraghanta <veeraghanta.sriram@gmail.com>
32 lines
954 B
TypeScript
32 lines
954 B
TypeScript
// components
|
|
import { EstimateDropdown } from "components/dropdowns";
|
|
import { observer } from "mobx-react-lite";
|
|
// types
|
|
import { TIssue } from "@plane/types";
|
|
|
|
type Props = {
|
|
issue: TIssue;
|
|
onChange: (issue: TIssue, data: Partial<TIssue>, updates: any) => void;
|
|
disabled: boolean;
|
|
};
|
|
|
|
export const SpreadsheetEstimateColumn: React.FC<Props> = observer((props: Props) => {
|
|
const { issue, onChange, disabled } = props;
|
|
|
|
return (
|
|
<div className="h-11 border-b-[0.5px] border-custom-border-200">
|
|
<EstimateDropdown
|
|
value={issue.estimate_point}
|
|
onChange={(data) =>
|
|
onChange(issue, { estimate_point: data }, { changed_property: "estimate_point", change_details: data })
|
|
}
|
|
projectId={issue.project_id}
|
|
disabled={disabled}
|
|
buttonVariant="transparent-with-text"
|
|
buttonClassName="rounded-none text-left"
|
|
buttonContainerClassName="w-full"
|
|
/>
|
|
</div>
|
|
);
|
|
});
|