-
Notifications
You must be signed in to change notification settings - Fork 137
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: break long expression names #736
Conversation
@@ -143,7 +143,7 @@ function DefaultInputHeaderCell(props, context) { | |||
|
|||
{ | |||
label ? ( | |||
<div className="input-label" title={ translate('Input Label') }> |
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.
Shall we keep the prefix Input Label
here? The intention would be to still tell users what this is, but also provide full details: Input Label - SOME TEXT THAT I ENTERED AS A USER
for example.
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.
Makes sense, I just noticed we do it for the decision Name already
Line 31 in 3081fd9
this._translate('Decision Name: ') + name }> |
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.
Adjusted with 6466c76
3081fd9
to
14c0827
Compare
title
so hover always shows complete labelNote: I used
-webkit-line-clamp
for multi-line ellipsis. This is supported in all major browsers (except IE, cf. https://caniuse.com/css-line-clamp)