From 6e14207327e809a12c0fb21ff06c9efe9ec2ea80 Mon Sep 17 00:00:00 2001 From: Dave Horton Date: Thu, 25 Jan 2024 13:16:42 -0500 Subject: [PATCH] sync with change of property name to time_to_first_byte_ms (#394) --- src/containers/internal/views/recent-calls/player.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/containers/internal/views/recent-calls/player.tsx b/src/containers/internal/views/recent-calls/player.tsx index c70ff21..e81d44d 100644 --- a/src/containers/internal/views/recent-calls/player.tsx +++ b/src/containers/internal/views/recent-calls/player.tsx @@ -266,7 +266,7 @@ export const Player = ({ call }: PlayerProps) => { const [ttsCache] = getSpanAttributeByName(s.attributes, "tts.cached"); const [streamLatency] = getSpanAttributeByName( s.attributes, - "tts_time_to_first_byte_ms" + "time_to_first_byte_ms" ); if (streamLatency && streamLatency.value.stringValue) { end = start + Number(streamLatency.value.stringValue) / 1_000;