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

mcgilman 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 6a2081e965 [NIFI-14299] - FIX: Apply button has no text on the 
Controller Settings -> General tab (#9752)
6a2081e965 is described below

commit 6a2081e96524de5cbe111e2aef475b11f3145659
Author: Rob Fellows <[email protected]>
AuthorDate: Mon Mar 3 12:27:30 2025 -0500

    [NIFI-14299] - FIX: Apply button has no text on the Controller Settings -> 
General tab (#9752)
---
 .../ui/general/general-form/general-form.component.ts        | 12 +++++++++++-
 1 file changed, 11 insertions(+), 1 deletion(-)

diff --git 
a/nifi-frontend/src/main/frontend/apps/nifi/src/app/pages/settings/ui/general/general-form/general-form.component.ts
 
b/nifi-frontend/src/main/frontend/apps/nifi/src/app/pages/settings/ui/general/general-form/general-form.component.ts
index fdd34b312f..638193e78f 100644
--- 
a/nifi-frontend/src/main/frontend/apps/nifi/src/app/pages/settings/ui/general/general-form/general-form.component.ts
+++ 
b/nifi-frontend/src/main/frontend/apps/nifi/src/app/pages/settings/ui/general/general-form/general-form.component.ts
@@ -30,11 +30,21 @@ import { MatFormField } from '@angular/material/form-field';
 import { MatLabel } from '@angular/material/select';
 import { MatInput } from '@angular/material/input';
 import { MatButton } from '@angular/material/button';
+import { NifiSpinnerDirective } from 
'../../../../../ui/common/spinner/nifi-spinner.directive';
 
 @Component({
     selector: 'general-form',
     templateUrl: './general-form.component.html',
-    imports: [AsyncPipe, ReactiveFormsModule, MatFormField, MatLabel, 
NifiTooltipDirective, MatInput, MatButton],
+    imports: [
+        AsyncPipe,
+        ReactiveFormsModule,
+        MatFormField,
+        MatLabel,
+        NifiTooltipDirective,
+        MatInput,
+        MatButton,
+        NifiSpinnerDirective
+    ],
     styleUrls: ['./general-form.component.scss']
 })
 export class GeneralForm {

Reply via email to