fix(core): show full job name & id on queue list via tooltip#42
Open
omar-zeineddine wants to merge 1 commit into
Open
fix(core): show full job name & id on queue list via tooltip#42omar-zeineddine wants to merge 1 commit into
omar-zeineddine wants to merge 1 commit into
Conversation
|
@omar-zeineddine is attempting to deploy a commit to the Pontus Abrahamsson's projects Team on Vercel. A member of the Team first needs to authorize it. |
ec5c296 to
6b258b5
Compare
The queue list hard-truncated job ids to 24 chars with no way to see the full value — custom ids like "order_8353…" were unreadable. Drop the JS truncation (CSS already ellipsizes to fit the column) and wrap the name/id block in a tooltip that reveals the complete job name and full id on hover.
6b258b5 to
0d9dd56
Compare
omarzeineddine-ai
added a commit
to amalinvest/workbench
that referenced
this pull request
Jul 11, 2026
…m PR pontusab#42) Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
omarzeineddine-ai
added a commit
to amalinvest/workbench
that referenced
this pull request
Jul 11, 2026
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.
Problem
On the queue/overview job list, job ids were hard-truncated to 24 characters (
truncate(job.id, 24)) with no way to recover the rest. Custom ids likeorder_8353ba2431a19308cb…were unreadable — you couldn't tell two jobs apart or copy the full id without opening each one.Fix
truncate(job.id, 24)and render the full id — CSStruncatealready ellipsizes it to fit the column responsively.Tooltipthat reveals the complete job name and full id on hover (break-allso longorder_…/pf_…ids wrap legibly).No new dependencies — uses the existing
Tooltipprimitive (already provided at the app root viaTooltipProvider).Before / After
Before:
order_8353ba2431a19308cb…(cut at 24 chars, full value unreachable)After: full id shown to column width, complete name + id on hover.
Testing
tsc --noEmit✅biome check✅vite build(UI bundle) ✅