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

scottyaslan 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 15622fdd76 NIFI-15083: Preventing vertical scrollbar in the override 
policy dialog. (#10410)
15622fdd76 is described below

commit 15622fdd761febc02d53abba60b43c01d75261b8
Author: Matt Gilman <[email protected]>
AuthorDate: Fri Oct 10 13:36:15 2025 -0400

    NIFI-15083: Preventing vertical scrollbar in the override policy dialog. 
(#10410)
---
 .../override-policy-dialog.component.html                    | 12 +++++++-----
 1 file changed, 7 insertions(+), 5 deletions(-)

diff --git 
a/nifi-frontend/src/main/frontend/apps/nifi/src/app/pages/access-policies/ui/common/override-policy-dialog/override-policy-dialog.component.html
 
b/nifi-frontend/src/main/frontend/apps/nifi/src/app/pages/access-policies/ui/common/override-policy-dialog/override-policy-dialog.component.html
index a75f2df1db..bbf692c246 100644
--- 
a/nifi-frontend/src/main/frontend/apps/nifi/src/app/pages/access-policies/ui/common/override-policy-dialog/override-policy-dialog.component.html
+++ 
b/nifi-frontend/src/main/frontend/apps/nifi/src/app/pages/access-policies/ui/common/override-policy-dialog/override-policy-dialog.component.html
@@ -18,11 +18,13 @@
 <h2 mat-dialog-title>Override Policy</h2>
 <form class="override-policy-form" [formGroup]="overridePolicyForm">
     <mat-dialog-content>
-        <div class="mb-5">Do you want to override with a copy of the inherited 
policy or an empty policy?</div>
-        <mat-radio-group formControlName="override">
-            <mat-radio-button value="copy">Copy</mat-radio-button>
-            <mat-radio-button value="empty">Empty</mat-radio-button>
-        </mat-radio-group>
+        <div class="pb-1">
+            <div class="mb-5">Do you want to override with a copy of the 
inherited policy or an empty policy?</div>
+            <mat-radio-group formControlName="override">
+                <mat-radio-button value="copy">Copy</mat-radio-button>
+                <mat-radio-button value="empty">Empty</mat-radio-button>
+            </mat-radio-group>
+        </div>
     </mat-dialog-content>
     <mat-dialog-actions align="end">
         <button mat-button mat-dialog-close>Cancel</button>

Reply via email to