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 0cd4213 commit 576bd45Copy full SHA for 576bd45
src/lib/ruby-to-blocks-converter/music.js
@@ -36,7 +36,7 @@ const MusicConverter = {
36
const beats = args[0].get('sym:beats');
37
if (this._isNumberOrBlock(note) && this._isNumberOrBlock(beats)) {
38
block = this._createBlock('music_playNoteForBeats', 'statement');
39
- this._addNumberInput(block, 'NOTE', 'math_number', note, 60);
+ this._addNoteInput(block, 'NOTE', note, 60);
40
this._addNumberInput(block, 'BEATS', 'math_number', beats, 0.25);
41
}
42
0 commit comments