Skip to content

Commit

Permalink
fix: workflow repository link
Browse files Browse the repository at this point in the history
  • Loading branch information
AugustDev committed Jul 14, 2024
1 parent a31e67f commit 836ba07
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/app/runs/[id]/components/General/General.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,10 @@ export const General: React.FC<GeneralProps> = ({ workflow, workspace }: General
<FaGithub className="h-6 w-5 text-gray-400" aria-hidden="true" />
</dt>
<dd className="text-sm leading-6 text-gray-500">
{workflow.repository} {workflow.revision && <span>({workflow.revision})</span>}
<Link className="hover:underline" target="_blank" href={workflow.repository}>
{workflow.repository}
</Link>
{workflow.revision && <span>({workflow.revision})</span>}
</dd>
</div>
)}
Expand Down

0 comments on commit 836ba07

Please sign in to comment.