Skip to content

Commit ca56667

Browse files
committed
fix 404
1 parent 5bb6ce2 commit ca56667

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

static/app/views/performance/newTraceDetails/traceWaterfall.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -892,7 +892,7 @@ export function TraceWaterfall(props: TraceWaterfallProps) {
892892
);
893893

894894
const logsTableData = useLogsPageData();
895-
if (props.tree.type === 'empty' && logsTableData?.logsData) {
895+
if (props.tree.type === 'empty' && logsTableData?.logsData?.data) {
896896
return null; // do not show the main trace details if you are in 'logs mode'
897897
}
898898

0 commit comments

Comments
 (0)