fix: link to project issue color

This commit is contained in:
鲁树人 2023-09-05 02:20:02 +01:00
parent 0b4ee5bc28
commit e003eba10c

View File

@ -1,3 +1,5 @@
import { Link } from '@chakra-ui/react';
export interface ProjectIssueProps { export interface ProjectIssueProps {
id: number | string; id: number | string;
title?: string; title?: string;
@ -5,13 +7,9 @@ export interface ProjectIssueProps {
export function ProjectIssue({ id, title }: ProjectIssueProps) { export function ProjectIssue({ id, title }: ProjectIssueProps) {
return ( return (
<a <Link isExternal target="_blank" href={`https://git.unlock-music.dev/um/um-react/issues/${id}`}>
rel="noopener noreferrer nofollow"
target="_blank"
href={`https://git.unlock-music.dev/um/um-react/issues/${id}`}
>
{`#${id}`} {`#${id}`}
{title && ` - ${title}`} {title && ` - ${title}`}
</a> </Link>
); );
} }