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 a032f1229f NIFI-14401 update paramater context inheritance X (#10365)
a032f1229f is described below
commit a032f1229f8321f4c56d1a93562568317571cc84
Author: Scott Aslan <[email protected]>
AuthorDate: Fri Oct 3 14:35:03 2025 -0400
NIFI-14401 update paramater context inheritance X (#10365)
* NIFI-14401 update paramater context inheritance X
* address review feedback
This closes #10365
---
.../parameter-context-inheritance.component.html | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git
a/nifi-frontend/src/main/frontend/apps/nifi/src/app/ui/common/parameter-context/parameter-context-inheritance/parameter-context-inheritance.component.html
b/nifi-frontend/src/main/frontend/apps/nifi/src/app/ui/common/parameter-context/parameter-context-inheritance/parameter-context-inheritance.component.html
index 7b3ef122f4..060d26ef25 100644
---
a/nifi-frontend/src/main/frontend/apps/nifi/src/app/ui/common/parameter-context/parameter-context-inheritance/parameter-context-inheritance.component.html
+++
b/nifi-frontend/src/main/frontend/apps/nifi/src/app/ui/common/parameter-context/parameter-context-inheritance/parameter-context-inheritance.component.html
@@ -95,20 +95,20 @@
<ng-template #authorizedInheritedParameterContext let-item let-i="i"
let-canClose="canClose">
@if (!isDisabled) {
<div class="flex items-center">
- <span class="grip pr-5"></span>
+ <span class="grip mr-2"></span>
<div class="parameter-context-inheritance-name"
[title]="item.component.name">
{{ item.component.name }}
</div>
@if (hasDescription(item)) {
<i
- class="pl-1 fa fa-info-circle neutral-color"
+ class="ml-2 fa fa-info-circle neutral-color"
nifiTooltip
[tooltipComponentType]="TextTip"
[tooltipInputData]="item.component.description"></i>
}
</div>
@if (canClose) {
- <button class="pr-1" type="button"
(click)="removeSelected(item, i)">
+ <button class="mr-2" type="button"
(click)="removeSelected(item, i)">
<i class="fa fa-times neutral-contrast"></i>
</button>
}
@@ -117,7 +117,7 @@
<div>{{ item.component.name }}</div>
@if (hasDescription(item)) {
<i
- class="pl-1 fa fa-info-circle neutral-color"
+ class="ml-2 fa fa-info-circle neutral-color"
nifiTooltip
[tooltipComponentType]="TextTip"
[tooltipInputData]="item.description"></i>