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 1437a2dcef NIFI-13480: (#9077)
1437a2dcef is described below
commit 1437a2dcef07c7f28f8cb33dfaa05eaa7ff4da65
Author: Matt Gilman <[email protected]>
AuthorDate: Fri Jul 12 01:20:37 2024 -0400
NIFI-13480: (#9077)
- Taking the user to the Parameter Context dialog from the Parameters
context menu on the canvas.
This closes #9077
---
.../apps/nifi/src/app/pages/flow-designer/state/flow/flow.effects.ts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/nifi-frontend/src/main/frontend/apps/nifi/src/app/pages/flow-designer/state/flow/flow.effects.ts
b/nifi-frontend/src/main/frontend/apps/nifi/src/app/pages/flow-designer/state/flow/flow.effects.ts
index 658c72d371..77754bbd60 100644
---
a/nifi-frontend/src/main/frontend/apps/nifi/src/app/pages/flow-designer/state/flow/flow.effects.ts
+++
b/nifi-frontend/src/main/frontend/apps/nifi/src/app/pages/flow-designer/state/flow/flow.effects.ts
@@ -1038,7 +1038,7 @@ export class FlowEffects {
ofType(FlowActions.navigateToParameterContext),
map((action) => action.request),
tap((request) => {
- this.router.navigate(['/parameter-contexts', request.id], {
+ this.router.navigate(['/parameter-contexts', request.id,
'edit'], {
state: {
backNavigation: request.backNavigation
}