mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
df97b35a99
* refcator spreadsheet to use table and roow based approach rather than column based * update spreadsheet and optimized layout * fix issues in spread sheet * close quick action menu on click --------- Co-authored-by: Rahul R <rahulr@Rahuls-MacBook-Pro.local>
30 lines
859 B
TypeScript
30 lines
859 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>) => 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 })}
|
|
projectId={issue.project_id}
|
|
disabled={disabled}
|
|
buttonVariant="transparent-with-text"
|
|
buttonClassName="rounded-none text-left"
|
|
buttonContainerClassName="w-full"
|
|
/>
|
|
</div>
|
|
);
|
|
});
|