mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-23 14:32:59 -05:00
Do not stringify reported monitor values.
Consulted @fsih, should be fine since formatting is being handled in the GUI anyway.
This commit is contained in:
parent
cc1314d289
commit
6793349898
1 changed files with 1 additions and 1 deletions
|
@ -90,7 +90,7 @@ const handleReport = function (
|
||||||
sequencer.runtime.requestUpdateMonitor(Map({
|
sequencer.runtime.requestUpdateMonitor(Map({
|
||||||
id: currentBlockId,
|
id: currentBlockId,
|
||||||
spriteName: targetId ? sequencer.runtime.getTargetById(targetId).getName() : null,
|
spriteName: targetId ? sequencer.runtime.getTargetById(targetId).getName() : null,
|
||||||
value: String(resolvedValue)
|
value: resolvedValue
|
||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue