-
Notifications
You must be signed in to change notification settings - Fork 2.9k
NIFI-15153: Fix UI overflow by allowing long names to wrap in connect… #10709
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -20,10 +20,10 @@ | |
| <div class="flex flex-col mb-5" data-qa="error-section"> | ||
| <div data-qa="to-input-error-label">To Input</div> | ||
| @if (noPorts) { | ||
| <mat-error data-qa="no-ports-error">{{ groupName }} does not have any local input ports.</mat-error> | ||
| <mat-error data-qa="no-ports-error" class="tertiary-color break-words font-medium w-full">{{ groupName }} does not have any local input ports.</mat-error> | ||
| } | ||
| @if (hasUnauthorizedPorts) { | ||
| <mat-error data-qa="unauthorized-ports-error" | ||
| <mat-error data-qa="unauthorized-ports-error" class="tertiary-color break-words font-medium w-full" | ||
| >Not authorized for any local input ports in {{ groupName }}</mat-error | ||
| > | ||
| } | ||
|
|
@@ -54,7 +54,7 @@ | |
| <div data-qa="within-group-label">Within Group</div> | ||
| <div | ||
| [title]="groupName" | ||
| class="tertiary-color overflow-ellipsis overflow-hidden whitespace-nowrap font-medium" | ||
| class="tertiary-color break-words font-medium w-full" | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please restore the |
||
| data-qa="group-name-display"> | ||
| {{ groupName }} | ||
| </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.
Please do not add
tertiary-colororfont-mediumto mat-error components. These a colored via angular material theme and follow the typography we have defined for the entire application.We also do not need the
break-wordsorw-fullhere. Please revert this change.