Skip to content

[nwdiag] grouping does not work properly #408

Description

@smoebody

From the docs this should do:

@startuml
nwdiag {
    internet [ shape = cloud];
    internet -- ingress;

    group {
      app;
      db;
    }

    network proxy {
    	app;
        ingress;
    }

    network default {
    	app;
        db;
    }
  }
}
@enduml

But it looks like this:
image

Without group the structure is ok:

@startuml
nwdiag {
    internet [ shape = cloud];
    internet -- ingress;

    network proxy {
    	app;
        ingress;
    }

    network default {
    	app;
        db;
    }
  }
}
@enduml

produces:
image

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions