scottyaslan commented on code in PR #8766:
URL: https://github.com/apache/nifi/pull/8766#discussion_r1594305968
##########
nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/pages/summary/ui/processor-status-listing/processor-status-table/processor-status-table.component.html:
##########
@@ -248,25 +248,36 @@
<th mat-header-cell *matHeaderCellDef></th>
<td mat-cell *matCellDef="let item">
<div class="flex items-center justify-end
gap-x-2">
- <div
- class="pointer fa
fa-long-arrow-right primary-color"
-
[routerLink]="getProcessorLink(item)"
- (click)="$event.stopPropagation()"
- title="Go to Processor in {{
-
item?.processorStatusSnapshot?.processGroupNamePath
- }}"></div>
+ <button
+ mat-icon-button
+ type="button"
+ [matMenuTriggerFor]="actionMenu"
+ class="h-16 w-16 flex items-center
justify-center icon global-menu">
+ <i class="fa fa-ellipsis-v"></i>
+ </button>
+ <mat-menu #actionMenu="matMenu"
xPosition="before">
+ <button
+ mat-menu-item
+
[routerLink]="getProcessorLink(item)"
+
(click)="$event.stopPropagation()">
+ <i class="fa
fa-long-arrow-right primary-color mr-2"></i>
+ Go to Processor in
+ {{
item?.processorStatusSnapshot?.processGroupNamePath }}
+ </button>
+ <button mat-menu-item
(click)="viewStatusHistoryClicked($event, item)">
+ <i class="fa fa-area-chart
primary-color mr-2"></i>
+ View Status History
Review Comment:
The "View Status History" seems to be correct. For the clustered details I
will update those menu options to "View Clustered Details" everywhere.
--
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]