#1212 Class definition is not applied to flowchart nodes with links

This commit is contained in:
Marc Faber
2020-01-19 18:10:14 +01:00
parent 921d274579
commit c38f053294
3 changed files with 17 additions and 11 deletions

View File

@@ -374,6 +374,7 @@ describe('Flowchart', () => {
click B testClick "click test"
classDef someclass fill:#f96;
class A someclass;
class C someclass;
`,
{
listUrl: false,
@@ -409,7 +410,9 @@ describe('Flowchart', () => {
click A "index.html#link-clicked" "link test"
click B testClick "click test"
classDef someclass fill:#f96;
class A someclass;`,
class A someclass;
class C someclass;
`,
{ flowchart: { htmlLabels: false } }
);
});