Skip to content

Commit

Permalink
Merge pull request #1551 from redpanda-data/CONSOLE-72-try-again-butt…
Browse files Browse the repository at this point in the history
…on-in-debug-bundle

chore: Try again button in failed debug bundle
  • Loading branch information
jvorcak authored Dec 5, 2024
2 parents d6f859a + 621b17b commit d26b4a3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export default class AdminPageDebugBundleProgress extends PageComponent<{}> {
{api.isDebugBundleExpired && (
<Text fontWeight="bold">Your previous bundle has expired and cannot be downloaded.</Text>
)}
{api.isDebugBundleError && <Text>Your debug bundle was not generated. Try again.</Text>}
{api.isDebugBundleError && <Text>Your debug bundle was not generated.</Text>}
{api.canDownloadDebugBundle && (
<Box>
<Flex gap={2}>
Expand Down Expand Up @@ -93,7 +93,7 @@ export default class AdminPageDebugBundleProgress extends PageComponent<{}> {
</Button>
) : (
<Button variant="outline" as={ReactRouterLink} to="/admin/debug-bundle">
Done
{api.isDebugBundleError ? 'Try again' : 'Done'}
</Button>
)}
</Box>
Expand Down

0 comments on commit d26b4a3

Please sign in to comment.