diff --git a/src/components/SpanAnnotationList.tsx b/src/components/SpanAnnotationList.tsx index 106dfcf..53567f4 100644 --- a/src/components/SpanAnnotationList.tsx +++ b/src/components/SpanAnnotationList.tsx @@ -85,9 +85,9 @@ export default function SpanAnnotationList({ > {displayName} - {(span.confidence || span.outcome) && ( + {(span.confidence != null || span.outcome) && (
- {span.confidence && C:{span.confidence}} + {span.confidence != null && C:{span.confidence}} {span.outcome && {span.outcome}}
)}