Commit 9b419cf
committed
fix(logs): Prevent cell action menu clicks from toggling row visibility
Clicking "Copy to clipboard" (or any item) in the ellipsis dropdown
menu on a log row also toggled the row's expanded/collapsed state.
The dropdown menu renders in a React portal, but React propagates
synthetic events from portals through the component tree. The row's
onPointerUp handler checked isInsideButton(event.target) to skip
the toggle, but portal menu items render as <li role="menuitem">,
which didn't match the button check.
Add a DOM containment guard: verify the event target is actually
inside the row element before toggling. Portal-originating events
fail this check since their DOM is in a separate subtree.
Refs LOGS-638
Co-Authored-By: Claude Sonnet 4 <noreply@anthropic.com>
Made-with: Cursor1 parent 352c3c9 commit 9b419cf
File tree
2 files changed
+56
-1
lines changed- static/app/views/explore/logs/tables
2 files changed
+56
-1
lines changedLines changed: 49 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
489 | 489 | | |
490 | 490 | | |
491 | 491 | | |
| 492 | + | |
| 493 | + | |
| 494 | + | |
| 495 | + | |
| 496 | + | |
| 497 | + | |
| 498 | + | |
| 499 | + | |
| 500 | + | |
| 501 | + | |
| 502 | + | |
| 503 | + | |
| 504 | + | |
| 505 | + | |
| 506 | + | |
| 507 | + | |
| 508 | + | |
| 509 | + | |
| 510 | + | |
| 511 | + | |
| 512 | + | |
| 513 | + | |
| 514 | + | |
| 515 | + | |
| 516 | + | |
| 517 | + | |
| 518 | + | |
| 519 | + | |
| 520 | + | |
| 521 | + | |
| 522 | + | |
| 523 | + | |
| 524 | + | |
| 525 | + | |
| 526 | + | |
| 527 | + | |
| 528 | + | |
| 529 | + | |
| 530 | + | |
| 531 | + | |
| 532 | + | |
| 533 | + | |
| 534 | + | |
| 535 | + | |
| 536 | + | |
| 537 | + | |
| 538 | + | |
| 539 | + | |
| 540 | + | |
492 | 541 | | |
493 | 542 | | |
494 | 543 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
185 | 185 | | |
186 | 186 | | |
187 | 187 | | |
188 | | - | |
| 188 | + | |
| 189 | + | |
| 190 | + | |
| 191 | + | |
| 192 | + | |
| 193 | + | |
| 194 | + | |
189 | 195 | | |
190 | 196 | | |
191 | 197 | | |
| |||
0 commit comments