Skip to content

Commit 196f59b

Browse files
authored
Fix overlapping empty flamegraph (#94306)
When profiling data is empty this UI was a bit overlapping Before: ![Screenshot 2025-06-25 at 11 39 24 AM](https://github.com/user-attachments/assets/847a60b4-2096-4f61-a020-e9b732f42339) After: ![Screenshot 2025-06-25 at 3 31 18 PM](https://github.com/user-attachments/assets/61e9bc7e-86c7-4126-a282-6d017afd8512)
1 parent dfbf0af commit 196f59b

File tree

1 file changed

+1
-1
lines changed
  • static/app/views/performance/transactionSummary/transactionProfiles

1 file changed

+1
-1
lines changed

static/app/views/performance/transactionSummary/transactionProfiles/content.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ export function TransactionProfilesContent(props: TransactionProfilesContentProp
166166
<RequestStateMessageContainer>
167167
{t('There was an error loading the flamegraph.')}
168168
</RequestStateMessageContainer>
169-
) : isEmpty(data) ? (
169+
) : isEmpty(data) && visualization !== 'flamegraph' ? (
170170
<RequestStateMessageContainer>
171171
{t('No profiling data found')}
172172
</RequestStateMessageContainer>

0 commit comments

Comments
 (0)