mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
* dev: change layout * chore: replace workspace slug and project id with anchor * chore: migration fixes * chore: update filtering logic * chore: endpoint changes * chore: update endpoint * chore: changed url pratterns * chore: use client side for layout and page * chore: issue vote changes * chore: project deploy board response change * refactor: publish project store and components * fix: update layout options after fetching settings * chore: remove unnecessary types * style: peek overview * refactor: components folder structure * fix: redirect from old path * chore: make the whole issue block clickable * chore: removed the migration file * chore: add server side redirection for old routes * chore: is enabled key change * chore: update types * chore: removed the migration file --------- Co-authored-by: NarayanBavisetti <narayan3119@gmail.com>
26 lines
804 B
TypeScript
26 lines
804 B
TypeScript
"use client";
|
|
|
|
import { observer } from "mobx-react-lite";
|
|
// types
|
|
import { IStateLite } from "@plane/types";
|
|
// ui
|
|
import { StateGroupIcon } from "@plane/ui";
|
|
|
|
type Props = {
|
|
state: IStateLite;
|
|
};
|
|
|
|
export const IssueKanBanHeader: React.FC<Props> = observer((props) => {
|
|
const { state } = props;
|
|
|
|
return (
|
|
<div className="flex items-center gap-2 px-2 pb-2">
|
|
<div className="flex h-3.5 w-3.5 flex-shrink-0 items-center justify-center">
|
|
<StateGroupIcon stateGroup={state.group} color={state.color} height="14" width="14" />
|
|
</div>
|
|
<div className="mr-1 truncate font-medium capitalize text-custom-text-200">{state?.name}</div>
|
|
{/* <span className="flex-shrink-0 rounded-full text-custom-text-300">{getCountOfIssuesByState(state.id)}</span> */}
|
|
</div>
|
|
);
|
|
});
|