Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Nulling globbed connections in scenarios is not working as expected #1941

Closed
StateOfDenial opened this issue May 17, 2024 · 1 comment
Closed

Comments

@StateOfDenial
Copy link

It appears as though nulling globbed connections in scenarios is not working for all layout engines.

Example:

b: B
a1: A1
a2: A2
a3: A3

b -> a*

scenarios: {
  test: {
    (b -> a*)[*]: null
  }
}

Results in this for the test.svg file, the exact same as index.svg:
image

I would expect the following instead:
image

If I change the code to the below, it then comes out as expected:

b: B
a1: A1
a2: A2
a3: A3

b -> a*

scenarios: {
  test: {
    (b -> a1)[0]: null
    (b -> a2)[0]: null
    (b -> a3)[0]: null
  }
}
@alixander
Copy link
Collaborator

alixander commented Jun 4, 2024

Thank you for reporting. Will be in next release: #1965

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
Status: Done
Development

No branches or pull requests

2 participants