mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
d46eb9c59a
* chore: add issue option added in list view group header * chore: add issue option added in kanban view group header
31 lines
747 B
TypeScript
31 lines
747 B
TypeScript
import { FC } from "react";
|
|
import { observer } from "mobx-react-lite";
|
|
// components
|
|
import { HeaderGroupByCard } from "./group-by-card";
|
|
import { Icon } from "./assignee";
|
|
|
|
export interface ICreatedByHeader {
|
|
column_id: string;
|
|
column_value: any;
|
|
issues_count: number;
|
|
}
|
|
|
|
export const CreatedByHeader: FC<ICreatedByHeader> = observer((props) => {
|
|
const { column_id, column_value, issues_count } = props;
|
|
|
|
const createdBy = column_value ?? null;
|
|
|
|
return (
|
|
<>
|
|
{createdBy && (
|
|
<HeaderGroupByCard
|
|
icon={<Icon user={createdBy} />}
|
|
title={createdBy?.display_name || ""}
|
|
count={issues_count}
|
|
issuePayload={{ created_by: createdBy?.member?.id }}
|
|
/>
|
|
)}
|
|
</>
|
|
);
|
|
});
|