mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
dd65d03d33
* feat: issue bulk operations * style: bulk operations action bar * chore: remove edition separation
19 lines
647 B
TypeScript
19 lines
647 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 border-b-[0.5px] border-custom-border-200 px-2.5 py-1 text-xs hover:bg-custom-background-80 group-[.selected-issue-row]:bg-custom-primary-100/5 group-[.selected-issue-row]:hover:bg-custom-primary-100/10">
|
|
{issue?.attachment_count} {issue?.attachment_count === 1 ? "attachment" : "attachments"}
|
|
</div>
|
|
);
|
|
});
|