mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
96399c7112
* feat: filters in plane deploy implemented multi-level dropdown for plane deploy * style: spacing and fonts * feat: plane deploy implemented authentication/theming, created/modified all the required store & services * devL reactions, voting, comments and theme
19 lines
500 B
TypeScript
19 lines
500 B
TypeScript
// components
|
|
import { IssueReactions } from "components/issues/peek-overview";
|
|
// types
|
|
import { IIssue } from "store/types";
|
|
|
|
type Props = {
|
|
issue: IIssue;
|
|
};
|
|
|
|
export const PeekOverviewIssueDetails: React.FC<Props> = ({ issue }) => (
|
|
<div className="space-y-2">
|
|
<h6 className="font-medium text-custom-text-200">
|
|
{issue.project_detail.identifier}-{issue.sequence_id}
|
|
</h6>
|
|
<h4 className="break-words text-2xl font-semibold">{issue.name}</h4>
|
|
<IssueReactions />
|
|
</div>
|
|
);
|