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 a476438 commit cc786bbCopy full SHA for cc786bb
components/dashboard/src/projects/Project.tsx
@@ -333,7 +333,17 @@ export default function () {
333
)}
334
</a>
335
<span className="flex-grow" />
336
- <a href={gitpodHostUrl.withContext(`${branch.url}`).toString()}>
+ <a
337
+ href={
338
+ prebuild
339
+ ? gitpodHostUrl
340
+ .withContext(
341
+ `open-prebuild/${prebuild.info.id}/${prebuild.info.changeUrl}`,
342
+ )
343
+ .toString()
344
+ : gitpodHostUrl.withContext(`${branch.url}`).toString()
345
+ }
346
+ >
347
<button
348
className={`primary mr-2 py-2 opacity-0 group-hover:opacity-100`}
349
>
0 commit comments