We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent afbb04e commit 624ffacCopy full SHA for 624ffac
PascalsTriangle.js
@@ -66,7 +66,7 @@ generateRowsFromTo(9, 32, false);
66
for (let i = 0; i < stickers.length; i++) {
67
let sticker = stickers[i];
68
if (sticker.val % 2 === 1) {
69
- miro.board.widgets.update({id: sticker.id, style: {stickerBackgroundColor: blue}, x: sticker.x, y: - sticker.y })
+ miro.board.widgets.update({id: sticker.id, text: sticker.val.toString(), style: {stickerBackgroundColor: blue}, x: sticker.x, y: - sticker.y })
70
}
71
72
0 commit comments