File tree 2 files changed +2
-1
lines changed
web/core/components/issues/issue-detail/parent
2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ export const IssueParentDetail: FC<TIssueParentDetail> = observer((props) => {
42
42
return (
43
43
< >
44
44
< div className = "mb-5 flex w-min items-center gap-3 whitespace-nowrap rounded-md border border-custom-border-300 bg-custom-background-80 px-2.5 py-1 text-xs" >
45
- < Link href = { `/${ workspaceSlug } /projects/${ parentIssue ?. project_id } /issues/${ parentIssue . id } ` } >
45
+ < Link href = { `/${ workspaceSlug } /projects/${ parentIssue ?. project_id } /issues/${ parentIssue . id } ` } target = "_blank" >
46
46
< div className = "flex items-center gap-2" >
47
47
< div className = "flex items-center gap-2.5" >
48
48
< span className = "block h-2 w-2 rounded-full" style = { { backgroundColor : stateColor } } />
Original file line number Diff line number Diff line change @@ -33,6 +33,7 @@ export const IssueParentSiblingItem: FC<TIssueParentSiblingItem> = observer((pro
33
33
< CustomMenu . MenuItem key = { issueDetail . id } >
34
34
< Link
35
35
href = { `/${ workspaceSlug } /projects/${ issueDetail ?. project_id as string } /issues/${ issueDetail . id } ` }
36
+ target = "_blank"
36
37
className = "flex items-center gap-2 py-0.5"
37
38
>
38
39
{ issueDetail . project_id && projectDetails ?. identifier && (
You can’t perform that action at this time.
0 commit comments