-
Notifications
You must be signed in to change notification settings - Fork 167
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: display alias names in UI #1180
Conversation
rbreeze
commented
Nov 29, 2023
Signed-off-by: Remington Breeze <remington@breeze.software>
✅ Deploy Preview for docs-kargo-akuity-io ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
Signed-off-by: Remington Breeze <remington@breeze.software>
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #1180 +/- ##
=======================================
Coverage 48.67% 48.67%
=======================================
Files 116 116
Lines 8602 8602
=======================================
Hits 4187 4187
Misses 4263 4263
Partials 152 152 ☔ View full report in Codecov by Sentry. |
@@ -46,29 +49,29 @@ export const StageNode = ({ | |||
}} | |||
> | |||
<h3 className='flex items-center text-white justify-between'> | |||
<div className='text-ellipsis whitespace-nowrap overflow-hidden'> | |||
{stage.metadata?.name} | |||
<div className='truncate pb-1'>{stage.metadata?.name}</div> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
truncate
is identical to text-ellipsis whitespace-nowrap overflow-hidden
.
pb-1
is added to prevent descender letters (e.g. g
, j
, p
) from being cut off at the bottom
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Absolute 🔥