diff --git a/frontend/app/components/Session_/OverviewPanel/components/TimelinePointer/TimelinePointer.tsx b/frontend/app/components/Session_/OverviewPanel/components/TimelinePointer/TimelinePointer.tsx index 6e45b5e99..e4916a14a 100644 --- a/frontend/app/components/Session_/OverviewPanel/components/TimelinePointer/TimelinePointer.tsx +++ b/frontend/app/components/Session_/OverviewPanel/components/TimelinePointer/TimelinePointer.tsx @@ -32,13 +32,14 @@ const TimelinePointer = React.memo((props: Props) => { }; const renderNetworkElement = (item: any) => { + console.log(item.name) return ( {item.success ? 'Slow resource: ' : 'Missing resource:'}
- {item.name} + {item.name.length > 200 ? (item.name.slice(0, 100) + ' ... ' + item.name.slice(-50)) : item.name} } delay={0}