feat(logs): Add copy link action to logs table row cell menus#115221
Merged
Conversation
Add a "Copy link" menu item to the cell action ellipsis menus in the logs table. Clicking it copies a URL that filters the logs view to the specific log entry via its ID. Also adds COPY_LINK as a new CellAction action type that can be opted into via allowActions. Co-Authored-By: Claude <noreply@anthropic.com>
Contributor
📊 Type Coverage Diff✅ No new type safety issues introduced. Coverage: 93.46% |
nsdeschenes
approved these changes
May 11, 2026
Contributor
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit fa16a4d. Configure here.
Co-authored-by: Jonas <JonasBa@users.noreply.github.com>
nikkikapadia
pushed a commit
that referenced
this pull request
May 12, 2026
Add a "Copy link" menu item to the cell action ellipsis menus in the logs table rows. Clicking it copies a URL that filters the logs view to the specific log entry via its ID (sets `logsQuery=id:<logId>`). This introduces `COPY_LINK` as a new `CellAction` action type, gated behind `allowActions` so existing tables are unaffected. The logs table opts in via `ALLOWED_CELL_ACTIONS`. Includes analytics tracking via `logs.table.row_link_copied` and a test for the new menu item. --------- Co-authored-by: Claude <noreply@anthropic.com> Co-authored-by: getsantry[bot] <66042841+getsantry[bot]@users.noreply.github.com>
3 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Add a "Copy link" menu item to the cell action ellipsis menus in the logs table rows. Clicking it copies a URL that filters the logs view to the specific log entry via its ID (sets
logsQuery=id:<logId>).This introduces
COPY_LINKas a newCellActionaction type, gated behindallowActionsso existing tables are unaffected. The logs table opts in viaALLOWED_CELL_ACTIONS.Includes analytics tracking via
logs.table.row_link_copiedand a test for the new menu item.