The latest updates on your projects. Learn more about Vercel for GitHub.
| Project | Deployment | Actions | Updated (UTC) |
|---|---|---|---|
| platform-frontend | Preview, Comment | Apr 24, 2026 6:27pm |
Fixes the overlapping PREVIEW badge on the triggers list page. The badge was overflowing its parent container (w-64 name column) and visually overlapping the description text.
Root cause: The name container div had w-64 but lacked min-w-0 and overflow-hidden. In a flex context, min-width: auto (the default) prevented the container from constraining its children to 256px. The name span also lacked min-w-0, preventing proper text truncation when the PREVIEW badge (which has shrink-0) was present.
Fix: Added min-w-0 overflow-hidden to the name container and min-w-0 to the name span, so the resource name truncates properly and the PREVIEW badge stays within its column boundary.
TriggerDetails.tsx (side sheet) is in a wide flex row and has no overlap issueLink to Devin session: https://app.devin.ai/sessions/812670d5b6a2402f9ccfa69a287b0c58 Requested by: @anshugarg15
The latest updates on your projects. Learn more about Vercel for GitHub.
| Project | Deployment | Actions | Updated (UTC) |
|---|---|---|---|
| platform-frontend | Preview, Comment | Apr 24, 2026 6:27pm |