scottyaslan commented on code in PR #9492:
URL: https://github.com/apache/nifi/pull/9492#discussion_r1931119039
##########
nifi-frontend/src/main/frontend/apps/nifi/src/app/ui/common/provenance-event-dialog/provenance-event-dialog.component.html:
##########
@@ -425,15 +485,11 @@ <h2 mat-dialog-title>Provenance Event</h2>
<div class="unset neutral-color">Empty string set</div>
</ng-container>
<ng-template #nonEmptyValue>
- <div
- class="tertiary-color font-medium overflow-ellipsis
overflow-hidden whitespace-nowrap"
- *ngIf="title == null; else valueWithTitle">
+ <div class="tertiary-color font-medium" *ngIf="title == null;
else valueWithTitle">
Review Comment:
I think this is the way we want it. In this case there is no title attribute
set so if we truncate then the user would never be able to see the entire
value.
##########
nifi-frontend/src/main/frontend/apps/nifi/src/app/ui/common/provenance-event-dialog/provenance-event-dialog.component.html:
##########
@@ -451,15 +507,12 @@ <h2 mat-dialog-title>Provenance Event</h2>
<ng-template #nonEmptyValue>
<div
[copy]="value"
- class="tertiary-color font-medium overflow-ellipsis
overflow-hidden whitespace-nowrap"
+ class="tertiary-color font-medium"
Review Comment:
no
##########
nifi-frontend/src/main/frontend/apps/nifi/src/app/ui/common/provenance-event-dialog/provenance-event-dialog.component.html:
##########
@@ -471,15 +524,11 @@ <h2 mat-dialog-title>Provenance Event</h2>
</ng-template>
<ng-template #formatContentValue let-value let-title="title">
<ng-container *ngIf="value != null; else nullValue">
- <div
- class="tertiary-color font-medium overflow-ellipsis
overflow-hidden whitespace-nowrap"
- *ngIf="title == null; else valueWithTitle">
+ <div class="tertiary-color font-medium" *ngIf="title == null; else
valueWithTitle">
Review Comment:
no
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]