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 fde7119 commit 1993943Copy full SHA for 1993943
static/app/components/metrics/metricSamplesTable.tsx
@@ -593,10 +593,19 @@ function SpanId({
593
}
594
595
function SpanDescription({description, project}: {description: string; project: string}) {
596
+ if (!description) {
597
+ return (
598
+ <Flex gap={space(0.75)} align="center">
599
+ <ProjectRenderer projectSlug={project} />
600
+ <EmptyValueContainer>{t('(none)')}</EmptyValueContainer>
601
+ </Flex>
602
+ );
603
+ }
604
+
605
return (
606
<Flex gap={space(0.75)} align="center">
607
<ProjectRenderer projectSlug={project} />
- <Container>{description} </Container>
608
+ <Container>{description}</Container>
609
</Flex>
610
);
611
0 commit comments