We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 998408b commit cc5e607Copy full SHA for cc5e607
packages/core/src/model/node/DiamondNodeModel.ts
@@ -31,7 +31,7 @@ export class DiamondNodeModel extends BaseNodeModel {
31
super(data, graphModel)
32
this.properties = data.properties || {}
33
34
- // this.setAttributes()
+ this.setAttributes()
35
}
36
37
setAttributes() {
packages/core/src/util/node.ts
@@ -492,7 +492,7 @@ export const getHtmlTextHeight = ({
492
dom.appendChild(rowDom)
493
})
494
} else {
495
- dom.textContent = `${rows[0]}`
+ dom.textContent = rows[0]
496
497
document.body.appendChild(dom)
498
const height = dom.clientHeight
0 commit comments