Skip to content

fix: prevent request path truncation in request logs#4643

Open
Siumauricio wants to merge 1 commit into
canaryfrom
claude/friendly-satoshi-01b3ad
Open

fix: prevent request path truncation in request logs#4643
Siumauricio wants to merge 1 commit into
canaryfrom
claude/friendly-satoshi-01b3ad

Conversation

@Siumauricio

Copy link
Copy Markdown
Contributor

What changed

The request path in the request logs table was truncated to 82 characters with an ellipsis when it exceeded 100 characters, hiding part of the route. This shows the full path and lets it wrap onto multiple lines instead.

  • Removed the slice(0, 82) + "..." truncation on RequestPath
  • Added flex-wrap to the row container so content wraps when it doesn't fit
  • Wrapped the path in a <span className="break-all"> so long paths break cleanly across lines

Why

Per the issue, the path should always be fully visible — whether via line breaks or scrolling — rather than being cut off.

Fixes #4642

The RequestPath in the request log table was truncated to 82 characters
with an ellipsis when it exceeded 100 characters, hiding part of the
route. Show the full path and let it wrap with flex-wrap and break-all.

Fixes #4642
@dosubot dosubot Bot added size:XS This PR changes 0-9 lines, ignoring generated files. bug Something isn't working labels Jun 16, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

bug Something isn't working size:XS This PR changes 0-9 lines, ignoring generated files.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

The request path in the request log will be truncated

1 participant