mirror of https://github.com/apache/nifi.git
[NIFI-14030] - Add an icon for Parameters and Parameter Contexts menu items (#9540)
This closes #9540
This commit is contained in:
parent
bac6300e95
commit
a760f0a8ee
|
@ -657,7 +657,7 @@ export class CanvasContextMenu implements ContextMenuDefinitionProvider {
|
||||||
condition: (selection: d3.Selection<any, any, any, any>) => {
|
condition: (selection: d3.Selection<any, any, any, any>) => {
|
||||||
return this.canvasUtils.hasParameterContext(selection);
|
return this.canvasUtils.hasParameterContext(selection);
|
||||||
},
|
},
|
||||||
clazz: 'fa',
|
clazz: 'fa fa-list-alt primary-color',
|
||||||
text: 'Parameters',
|
text: 'Parameters',
|
||||||
action: (selection: d3.Selection<any, any, any, any>) => {
|
action: (selection: d3.Selection<any, any, any, any>) => {
|
||||||
let id;
|
let id;
|
||||||
|
|
|
@ -87,7 +87,7 @@
|
||||||
Controller Settings
|
Controller Settings
|
||||||
</button>
|
</button>
|
||||||
<button mat-menu-item class="global-menu-item" [routerLink]="['/parameter-contexts']">
|
<button mat-menu-item class="global-menu-item" [routerLink]="['/parameter-contexts']">
|
||||||
<i class="fa mr-2"></i>
|
<i class="fa fa-list-alt primary-color mr-2"></i>
|
||||||
Parameter Contexts
|
Parameter Contexts
|
||||||
</button>
|
</button>
|
||||||
@if (clusterSummary()?.clustered) {
|
@if (clusterSummary()?.clustered) {
|
||||||
|
|
Loading…
Reference in New Issue