Truncate string arguments displayed in failed jobs index - #265
Merged
Conversation
Long arguments make the job lists unreadable and push the actions out of view, so show at most 300 characters per job in the lists. The full arguments remain on the job's page. Co-authored-by: Rosa Gutierrez <rosa@37signals.com> Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
rosa
force-pushed
the
truncate-job-args-index-view
branch
from
August 29, 2026 19:44
01318cc to
e11c86e
Compare
Member
|
Thanks @benjaminpenaolvera, and so sorry for the super long delay. |
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 join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Description:
This PR truncates the string representation of job arguments in the failed jobs index view. When job arguments are very long, they can break the UI and make the job list hard to read. With this change, only the first 300 characters are shown in the index, while the full arguments remain visible in the job detail view.
Why:
This improves readability and usability. Currently, when job arguments are too long, the UI tends to break and requires excessive horizontal scrolling to perform actions like retry or discard, making the process tedious. Alternatively, users are forced to enter the job detail view just to take action, which is inefficient. Truncating the arguments in the index view makes it much easier to quickly navigate, scan, and manage failed jobs.