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 69bdeaa commit 92193b3Copy full SHA for 92193b3
components/dashboard/src/prebuilds/detail/PrebuildDetailPage.tsx
@@ -361,15 +361,13 @@ export const PrebuildDetailPage: FC = () => {
361
>
362
View Prebuild Settings
363
</LinkButton>
364
- <Button
+ <LinkButton
365
disabled={prebuild?.status?.phase?.name !== PrebuildPhase_Phase.AVAILABLE}
366
- onClick={() =>
367
- (window.location.href = `/#open-prebuild/${prebuild?.id}/${prebuild?.contextUrl}`)
368
- }
+ href={`/#open-prebuild/${prebuild?.id}/${prebuild?.contextUrl}`}
369
variant="secondary"
370
371
Open Debug Workspace
372
- </Button>
+ </LinkButton>
373
</div>
374
375
0 commit comments