diff --git a/static/gsAdmin/views/launchpadAdminPage.tsx b/static/gsAdmin/views/launchpadAdminPage.tsx index f4ffaca63fd355..49963ed88a8098 100644 --- a/static/gsAdmin/views/launchpadAdminPage.tsx +++ b/static/gsAdmin/views/launchpadAdminPage.tsx @@ -7,6 +7,7 @@ import {Button} from 'sentry/components/core/button'; import {CompactSelect} from 'sentry/components/core/compactSelect'; import {Input} from 'sentry/components/core/input'; import {Container, Flex, Grid} from 'sentry/components/core/layout'; +import {Link} from 'sentry/components/core/link'; import {Heading, Text} from 'sentry/components/core/text'; import ConfigStore from 'sentry/stores/configStore'; import type {Region} from 'sentry/types/system'; @@ -380,6 +381,27 @@ function LaunchpadAdminPage() { {fetchedArtifactInfo && ( + {fetchedArtifactInfo.artifact_info?.project?.organization_slug && + fetchedArtifactInfo.artifact_info?.project?.slug && + fetchedArtifactInfo.artifact_info?.id && ( + + + + Artifact URL: + + + {`https://${fetchedArtifactInfo.artifact_info.project.organization_slug}.sentry.io/preprod/${fetchedArtifactInfo.artifact_info.project.slug}/${fetchedArtifactInfo.artifact_info.id}/`} + + + + )} Fetched Artifact Information
{JSON.stringify(fetchedArtifactInfo, null, 2)}