Skip to content

Commit

Permalink
fix(performance): No table overflow + glitchy behaviour (#81378)
Browse files Browse the repository at this point in the history
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">
  • Loading branch information
nikkikapadia authored Nov 27, 2024
1 parent eaed1d0 commit d963cbe
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions static/app/views/performance/table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -570,6 +570,7 @@ class _Table extends Component<Props, State> {
data={tableData ? tableData.data : []}
columnOrder={columnOrder}
columnSortBy={columnSortBy}
bodyStyle={{overflow: 'visible'}}
grid={{
onResizeColumn: this.handleResizeColumn,
renderHeadCell: this.renderHeadCellWithMeta(
Expand Down

0 comments on commit d963cbe

Please sign in to comment.