Duplicate parent-child relationship after refactoring #980
johnafitch
started this conversation in
General
Replies: 2 comments
-
|
In what may be a related anomaly, selecting in the Explorer the parent node (with the duplicate child relationships), highlights both the parent node and the 4 relationships in the General View. |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
Hello, Thank you for pointing this. This is a graphical anomaly, you don't have duplicated relationships. Regards, |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

Uh oh!
There was an error while loading. Please reload this page.
-
After refactoring an Action hierarchy (by dropping actions into the Action Flow compartment), the General View displays duplicate relationships for each child Action. Deleting either one of the relationships, removes both from the display.
Relevant parts of the downloaded model below:
action 'Home Intrusion Lifecycle Functions' {
action Intrude {
....
}
action 'Detect Intrusion' {
...
}
action 'Receive Alert' {
...
}
action 'Maintain Readiness' {
action 'Feed the dog' {
action 'Obtain food';
action 'Store food';
action 'Retrieve food from storage';
action 'Prepare food';
action 'Hold food';
action Eat;
}
action 'Maintain health of dog' {
action 'Monitor dog's health';
action 'Take dog to vet';
action 'Fix dog';
action 'Return dog to site';
action 'Provide benign environment';
}
}
}
Beta Was this translation helpful? Give feedback.
All reactions