plane/web/components/issues/issue-layouts/list/headers/state.tsx
Anmol Singh Bhatia d46eb9c59a
chore: add issue option added in header group (#2592)
* chore: add issue option added in list view group header

* chore: add issue option added in kanban view group header
2023-11-01 19:10:29 +05:30

31 lines
731 B
TypeScript

import { FC } from "react";
import { observer } from "mobx-react-lite";
// components
import { HeaderGroupByCard } from "./group-by-card";
import { Icon } from "./state-group";
export interface IStateHeader {
column_id: string;
column_value: any;
issues_count: number;
}
export const StateHeader: FC<IStateHeader> = observer((props) => {
const { column_id, column_value, issues_count } = props;
const state = column_value ?? null;
return (
<>
{state && (
<HeaderGroupByCard
icon={<Icon stateGroup={state?.group} color={state?.color} />}
title={state?.name || ""}
count={issues_count}
issuePayload={{ state: state?.id }}
/>
)}
</>
);
});