You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by rf...@apache.org on 2024/04/23 15:36:08 UTC

(nifi) branch main updated: [NIFI-13051] update dialog action buttons (#8688)

This is an automated email from the ASF dual-hosted git repository.

rfellows pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/nifi.git


The following commit(s) were added to refs/heads/main by this push:
     new 3e0dcf7342 [NIFI-13051] update dialog action buttons (#8688)
3e0dcf7342 is described below

commit 3e0dcf7342ef0690e3c8c58b82048f256ec5b187
Author: Scott Aslan <sc...@users.noreply.github.com>
AuthorDate: Tue Apr 23 11:36:02 2024 -0400

    [NIFI-13051] update dialog action buttons (#8688)
    
    This closes #8688
---
 .../edit-remote-process-group/edit-remote-process-group.component.html  | 2 +-
 .../src/app/ui/common/edit-tenant/edit-tenant-dialog.component.html     | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/pages/flow-designer/ui/canvas/items/remote-process-group/edit-remote-process-group/edit-remote-process-group.component.html b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/pages/flow-designer/ui/canvas/items/remote-process-group/edit-remote-process-group/edit-remote-process-group.component.html
index 2f8eff3d03..55a72230e9 100644
--- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/pages/flow-designer/ui/canvas/items/remote-process-group/edit-remote-process-group/edit-remote-process-group.component.html
+++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/pages/flow-designer/ui/canvas/items/remote-process-group/edit-remote-process-group/edit-remote-process-group.component.html
@@ -112,7 +112,7 @@
                     color="primary"
                     (click)="submitForm()"
                     mat-button>
-                    <span *nifiSpinner="saving.value">Add</span>
+                    <span *nifiSpinner="saving.value">Apply</span>
                 </button>
             }
         </mat-dialog-actions>
diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/ui/common/edit-tenant/edit-tenant-dialog.component.html b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/ui/common/edit-tenant/edit-tenant-dialog.component.html
index 7fa169864b..963cb70579 100644
--- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/ui/common/edit-tenant/edit-tenant-dialog.component.html
+++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/ui/common/edit-tenant/edit-tenant-dialog.component.html
@@ -70,7 +70,7 @@
                 [disabled]="editTenantForm.invalid || saving.value"
                 (click)="okClicked()"
                 color="primary">
-                <span *nifiSpinner="saving.value">Ok</span>
+                <span *nifiSpinner="saving.value">{{ isNew ? 'Add' : 'Apply' }}</span>
             </button>
         </mat-dialog-actions>
     }