Skip to content

Commit

Permalink
Merge pull request #3719 from CalebUsadi/fix/3711_er_fill_attribute
Browse files Browse the repository at this point in the history
Change fill attribute to style
  • Loading branch information
knsv committed Oct 25, 2022
2 parents 3dca7d1 + fc24373 commit 10ba3b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/mermaid/src/diagrams/er/erRenderer.js
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ const drawEntities = function (svgNode, entities, graph) {
const rectNode = groupNode
.insert('rect', '#' + textId)
.attr('class', 'er entityBox')
.attr('fill', conf.fill)
.style('fill', conf.fill)
.attr('fill-opacity', '100%')
.attr('stroke', conf.stroke)
.attr('x', 0)
Expand Down

0 comments on commit 10ba3b6

Please sign in to comment.