This is my UML:
box "System"
participant Desired as des
participant "Last Applied" as app
participant Effective as eff
end box
participant Device as dev #8f8
/ note over des #linen: v2
/ note over app: v1
/ note over eff: v1
/ note over dev #aqua: v3
dev -> eff: next read
note over des #linen: v2
/ note over dev #aqua: v3
group updates blocked
/ note over app: v1
/ note over eff #aqua: v3
end
des -x dev: write prevented
note over des #linen: v2
/ note over dev #aqua: v3
group updates blocked
/ note over app: v1
/ note over eff #aqua: v3
end
eff -> des: db update
note over des #aqua: v3
/ note over app #aqua: v3
/ note over eff #aqua: v3
/ note over dev #aqua: v3
The output I get is this:

But the desired result would be:

How can I make the notes in and out the group to be aligned?