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 ca3104c commit e15a188Copy full SHA for e15a188
static/app/components/events/ourlogs/ourlogsSection.tsx
@@ -106,10 +106,7 @@ function OurlogsSectionContent({
106
// We may change this in the future if we have a trace-group or we generate trace sids for these issue types.
107
return null;
108
}
109
- if (
110
- !tableData ||
111
- (tableData.data && tableData.data.length === 0 && logsSearch.isEmpty())
112
- ) {
+ if (!tableData?.data || (tableData.data.length === 0 && logsSearch.isEmpty())) {
113
// Like breadcrumbs, we don't show the logs section if there are no logs.
114
115
0 commit comments