Skip to content

Commit 75a054a

Browse files
committed
fix
1 parent c625191 commit 75a054a

File tree

1 file changed

+2
-2
lines changed
  • services/static-webserver/client/source/class/osparc/wrapper

1 file changed

+2
-2
lines changed

services/static-webserver/client/source/class/osparc/wrapper/Svg.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -309,15 +309,15 @@ qx.Class.define("osparc.wrapper.Svg", {
309309
// Title text
310310
const titleFontSize = 12;
311311
const defaultFont = osparc.utils.Utils.getDefaultFont();
312-
const title = draw.text(title)
312+
const label = draw.text(title)
313313
.font({
314314
fill: color,
315315
size: titleFontSize,
316316
family: defaultFont["family"],
317317
anchor: 'start'
318318
})
319319
.move(padding + iconSize + 8, ((bubbleHeight - titleFontSize) / 2) - 3);
320-
bubble.add(title);
320+
bubble.add(label);
321321

322322
return bubble;
323323
},

0 commit comments

Comments
 (0)