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 0080f96 commit c77916bCopy full SHA for c77916b
static/app/views/insights/mobile/screens/utils.ts
@@ -6,7 +6,7 @@ import type {MetricsProperty, SpanMetricsProperty} from 'sentry/views/insights/t
6
import {VitalState} from 'sentry/views/performance/vitalDetail/utils';
7
8
const formatMetricValue = (metric: MetricValue, field?: string | undefined): string => {
9
- if (metric.value === undefined) {
+ if (metric.value === undefined || metric.value === null) {
10
return '-';
11
}
12
if (typeof metric.value === 'number' && metric.type === 'duration' && metric.unit) {
0 commit comments