mirror of https://github.com/apache/nifi.git
NIFI-13284: (#8891)
- Only saving canvas routes that are not edit or history. This closes #8891
This commit is contained in:
parent
dbc786095c
commit
0660616864
|
@ -102,7 +102,9 @@ export class Canvas implements OnInit, OnDestroy {
|
||||||
.select(selectUrl)
|
.select(selectUrl)
|
||||||
.pipe(takeUntilDestroyed())
|
.pipe(takeUntilDestroyed())
|
||||||
.subscribe((route) => {
|
.subscribe((route) => {
|
||||||
|
if (!route.endsWith('/edit') && !route.endsWith('/history')) {
|
||||||
this.storage.setItem('current-canvas-route', route);
|
this.storage.setItem('current-canvas-route', route);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
// load the process group from the route
|
// load the process group from the route
|
||||||
|
|
Loading…
Reference in New Issue