2023-11-03 13:45:09 +00:00
|
|
|
import React from "react";
|
2024-01-11 12:49:19 +00:00
|
|
|
import { observer } from "mobx-react-lite";
|
2023-11-03 13:45:09 +00:00
|
|
|
// types
|
2024-01-11 12:49:19 +00:00
|
|
|
import { TIssue } from "@plane/types";
|
2023-11-03 13:45:09 +00:00
|
|
|
|
|
|
|
type Props = {
|
2024-01-11 12:49:19 +00:00
|
|
|
issue: TIssue;
|
2023-11-03 13:45:09 +00:00
|
|
|
};
|
|
|
|
|
2024-01-11 12:49:19 +00:00
|
|
|
export const SpreadsheetLinkColumn: React.FC<Props> = observer((props: Props) => {
|
|
|
|
const { issue } = props;
|
2023-11-03 13:45:09 +00:00
|
|
|
|
|
|
|
return (
|
2024-01-11 12:49:19 +00:00
|
|
|
<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?.link_count} {issue?.link_count === 1 ? "link" : "links"}
|
|
|
|
</div>
|
2023-11-03 13:45:09 +00:00
|
|
|
);
|
2024-01-11 12:49:19 +00:00
|
|
|
});
|