Skip to content

Commit

Permalink
Fixes links to a debug bundle
Browse files Browse the repository at this point in the history
  • Loading branch information
jvorcak committed Nov 19, 2024
1 parent 4a6fc8f commit ee79e7c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ export default class AdminPageDebugBundleProgress extends PageComponent<{}> {
void api.cancelDebugBundleProcess({jobId: status.value.value.jobId});
}
});
}}>Stop</Button>:<Button variant="outline" as={ReactRouterLink} to="/admin">Done</Button>}
}}>Stop</Button>:<Button variant="outline" as={ReactRouterLink} to="/admin/debug-bundle">Done</Button>}
</Box>
</Box>}
</Box>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ const ClusterHealthOverview = () => {
<Flex gap={2}>
{api.isDebugBundleInProgress && <Button px={0} as={ReactRouterLink} variant="link" to={`/admin/debug-bundle/progress/${api.debugBundleStatus?.jobId}`}>Bundle generation in progress...</Button>}
{api.canDownloadDebugBundle && <DebugBundleLink statuses={api.debugBundleStatuses} showDatetime={false}/>}
{!api.isDebugBundleInProgress && <Button px={0} as={ReactRouterLink} variant="link" to="/admin/debug-bundle/new">Generate new</Button>}
{!api.isDebugBundleInProgress && <Button px={0} as={ReactRouterLink} variant="link" to="/admin/debug-bundle/">Generate new</Button>}
</Flex>
</Grid>
</ListItem>
Expand Down

0 comments on commit ee79e7c

Please sign in to comment.