2023-10-18 07:02:02 +00:00
|
|
|
import React from "react";
|
2024-01-11 12:49:19 +00:00
|
|
|
import { observer } from "mobx-react-lite";
|
2023-10-18 13:48:01 +00:00
|
|
|
// helpers
|
2024-01-02 09:15:51 +00:00
|
|
|
import { renderFormattedDate } from "helpers/date-time.helper";
|
2023-10-18 07:02:02 +00:00
|
|
|
// types
|
2024-01-11 12:49:19 +00:00
|
|
|
import { TIssue } from "@plane/types";
|
2023-10-18 07:02:02 +00:00
|
|
|
|
|
|
|
type Props = {
|
2024-01-11 12:49:19 +00:00
|
|
|
issue: TIssue;
|
2023-10-18 07:02:02 +00:00
|
|
|
};
|
|
|
|
|
2024-01-11 12:49:19 +00:00
|
|
|
export const SpreadsheetUpdatedOnColumn: React.FC<Props> = observer((props: Props) => {
|
|
|
|
const { issue } = props;
|
2023-10-18 07:02:02 +00:00
|
|
|
return (
|
2024-01-30 06:46:21 +00:00
|
|
|
<div className="flex h-11 w-full items-center justify-center text-xs border-b-[0.5px] border-neutral-border-medium hover:bg-neutral-component-surface-dark">
|
2024-01-11 12:49:19 +00:00
|
|
|
{renderFormattedDate(issue.updated_at)}
|
|
|
|
</div>
|
2023-10-18 07:02:02 +00:00
|
|
|
);
|
2024-01-11 12:49:19 +00:00
|
|
|
});
|