Merge pull request #6826 from mermaid-js/6784-edge-label-color-mismatch

6784: Fix edge ID styling mismatch with linkStyle color
This commit is contained in:
Knut Sveidqvist
2025-09-10 13:41:44 +00:00
committed by GitHub
4 changed files with 27 additions and 3 deletions

View File

@@ -1186,4 +1186,17 @@ end
imgSnapshotTest(graph, { htmlLabels: false });
});
});
it('V2 - 17: should apply class def colour to edge label', () => {
imgSnapshotTest(
` graph LR
id1(Start) link@-- "Label" -->id2(Stop)
style id1 fill:#f9f,stroke:#333,stroke-width:4px
class id2 myClass
classDef myClass fill:#bbf,stroke:#f66,stroke-width:2px,color:white,stroke-dasharray: 5 5
class link myClass
`
);
});
});