We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f72829 commit 4a8a0caCopy full SHA for 4a8a0ca
packages/nextjs/app/my-grants/page.tsx
@@ -55,6 +55,16 @@ const MyGrants: NextPage = () => {
55
<div className="flex items-center justify-between">
56
<div className="flex items-center">
57
<p className={`badge ${badgeBgColor[grant.status]}`}>{grant.status}</p>
58
+ {grant.link && (
59
+ <a
60
+ href={grant.link}
61
+ target="_blank"
62
+ rel="noopener noreferrer"
63
+ className="ml-2 text-blue-600 underline underline-offset-4 text-xs align-middle font-bold"
64
+ >
65
+ view build <ArrowTopRightOnSquareIcon className="h-4 w-4 inline" />
66
+ </a>
67
+ )}
68
{grant.note &&
69
grant.note.trim().length > 0 &&
70
(grant.status === PROPOSAL_STATUS.REJECTED || grant.status === PROPOSAL_STATUS.APPROVED) && (
0 commit comments