Merge pull request #828 from stanhu/sh-fix-dotted-lines-flowchart

Fix dotted lines not appearing in flowcharts when HTML labels disabled
This commit is contained in:
Knut Sveidqvist 2019-06-11 17:13:51 +02:00 committed by GitHub
commit 836d02d0b9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 1 deletions

View File

@ -198,7 +198,6 @@ export const addEdges = function (edges, g) {
edgeData.label = '<span class="edgeLabel">' + edge.text + '</span>'
} else {
edgeData.labelType = 'text'
edgeData.style = 'stroke: #333; stroke-width: 1.5px;fill:none'
edgeData.label = edge.text.replace(/<br>/g, '\n')
}
} else {