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 1c11ce94e5 [NIFI-14193] correct icon alignment when a parameter is 
inherited and has a description (#9666)
1c11ce94e5 is described below

commit 1c11ce94e5ad4e758e528cc67c46c6161d6f0fc8
Author: Scott Aslan <[email protected]>
AuthorDate: Fri Jan 24 15:39:13 2025 -0500

    [NIFI-14193] correct icon alignment when a parameter is inherited and has a 
description (#9666)
    
    This closes #9666
---
 .../parameter-table/parameter-table.component.html | 34 ++++++++++++----------
 1 file changed, 18 insertions(+), 16 deletions(-)

diff --git 
a/nifi-frontend/src/main/frontend/apps/nifi/src/app/pages/parameter-contexts/ui/parameter-context-listing/parameter-table/parameter-table.component.html
 
b/nifi-frontend/src/main/frontend/apps/nifi/src/app/pages/parameter-contexts/ui/parameter-context-listing/parameter-table/parameter-table.component.html
index 628f68fb31..7489c3e038 100644
--- 
a/nifi-frontend/src/main/frontend/apps/nifi/src/app/pages/parameter-contexts/ui/parameter-context-listing/parameter-table/parameter-table.component.html
+++ 
b/nifi-frontend/src/main/frontend/apps/nifi/src/app/pages/parameter-contexts/ui/parameter-context-listing/parameter-table/parameter-table.component.html
@@ -44,22 +44,24 @@
                                     
[title]="item.originalEntity.parameter.name">
                                     {{ item.originalEntity.parameter.name }}
                                 </div>
-                                @if (hasDescription(item)) {
-                                    <i
-                                        class="fa fa-info-circle primary-color"
-                                        nifiTooltip
-                                        [tooltipComponentType]="TextTip"
-                                        
[tooltipInputData]="getDescription(item)"
-                                        [delayClose]="false"></i>
-                                }
-                                @if (canOverride(item)) {
-                                    <i
-                                        class="fa fa-level-down primary-color"
-                                        nifiTooltip
-                                        [tooltipComponentType]="TextTip"
-                                        tooltipInputData="This parameter is 
inherited form another Parameter Context."
-                                        [delayClose]="false"></i>
-                                }
+                                <div class="flex gap-x-2 justify-end">
+                                    @if (hasDescription(item)) {
+                                        <i
+                                            class="fa fa-info-circle 
primary-color"
+                                            nifiTooltip
+                                            [tooltipComponentType]="TextTip"
+                                            
[tooltipInputData]="getDescription(item)"
+                                            [delayClose]="false"></i>
+                                    }
+                                    @if (canOverride(item)) {
+                                        <i
+                                            class="fa fa-level-down 
primary-color"
+                                            nifiTooltip
+                                            [tooltipComponentType]="TextTip"
+                                            tooltipInputData="This parameter 
is inherited form another Parameter Context."
+                                            [delayClose]="false"></i>
+                                    }
+                                </div>
                             </div>
                         </td>
                     </ng-container>

Reply via email to