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 c625191 commit 75a054aCopy full SHA for 75a054a
services/static-webserver/client/source/class/osparc/wrapper/Svg.js
@@ -309,15 +309,15 @@ qx.Class.define("osparc.wrapper.Svg", {
309
// Title text
310
const titleFontSize = 12;
311
const defaultFont = osparc.utils.Utils.getDefaultFont();
312
- const title = draw.text(title)
+ const label = draw.text(title)
313
.font({
314
fill: color,
315
size: titleFontSize,
316
family: defaultFont["family"],
317
anchor: 'start'
318
})
319
.move(padding + iconSize + 8, ((bubbleHeight - titleFontSize) / 2) - 3);
320
- bubble.add(title);
+ bubble.add(label);
321
322
return bubble;
323
},
0 commit comments