mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
30 lines
637 B
TypeScript
30 lines
637 B
TypeScript
|
import { FC } from "react";
|
||
|
|
||
|
// hooks
|
||
|
import { useIssueDetail } from "hooks/store";
|
||
|
// ui
|
||
|
|
||
|
type TIssueUser = {
|
||
|
activityId: string;
|
||
|
};
|
||
|
|
||
|
export const IssueUser: FC<TIssueUser> = (props) => {
|
||
|
const { activityId } = props;
|
||
|
// hooks
|
||
|
const {
|
||
|
activity: { getActivityById },
|
||
|
} = useIssueDetail();
|
||
|
|
||
|
const activity = getActivityById(activityId);
|
||
|
|
||
|
if (!activity) return <></>;
|
||
|
return (
|
||
|
<a
|
||
|
href={`/${activity?.workspace_detail?.slug}/profile/${activity?.actor_detail?.id}`}
|
||
|
className="hover:underline text-custom-text-100 font-medium capitalize"
|
||
|
>
|
||
|
{activity.actor_detail?.display_name}
|
||
|
</a>
|
||
|
);
|
||
|
};
|