Skip to content

Commit bca78df

Browse files
nikkikapadiaandrewshie-sentry
authored andcommitted
fix(performance): No table overflow + glitchy behaviour (#81378)
Fixes glitchy behaviour when table does not allow overflow. Now the overflow is visible outside the table. Feedback link: https://sentry.sentry.io/feedback/?feedbackSlug=javascript%3A6094894234&project=11276 Before <img width="395" alt="image" src="https://github.com/user-attachments/assets/f0a27839-3c5b-47d3-be55-d6edb244281c"> After <img width="464" alt="image" src="https://github.com/user-attachments/assets/9b4d2f49-5a75-449c-9da7-73cb035001c5">
1 parent eba027f commit bca78df

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

static/app/views/performance/table.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -570,6 +570,7 @@ class _Table extends Component<Props, State> {
570570
data={tableData ? tableData.data : []}
571571
columnOrder={columnOrder}
572572
columnSortBy={columnSortBy}
573+
bodyStyle={{overflow: 'visible'}}
573574
grid={{
574575
onResizeColumn: this.handleResizeColumn,
575576
renderHeadCell: this.renderHeadCellWithMeta(

0 commit comments

Comments
 (0)