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>
19 lines
536 B
TypeScript
19 lines
536 B
TypeScript
import React from "react";
|
|
import { observer } from "mobx-react-lite";
|
|
// types
|
|
import { TIssue } from "@plane/types";
|
|
|
|
type Props = {
|
|
issue: TIssue;
|
|
};
|
|
|
|
export const SpreadsheetAttachmentColumn: React.FC<Props> = observer((props) => {
|
|
const { issue } = props;
|
|
|
|
return (
|
|
<div className="flex h-11 w-full items-center px-2.5 py-1 text-xs border-b-[0.5px] border-custom-border-200 hover:bg-custom-background-80">
|
|
{issue?.attachment_count} {issue?.attachment_count === 1 ? "attachment" : "attachments"}
|
|
</div>
|
|
);
|
|
});
|