mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-23 14:32:59 -05:00
Merge pull request #820 from ericrosenbaum/bugfix/extension-menu-values
Convert music extension menu values to string
This commit is contained in:
commit
6dffc0e512
1 changed files with 1 additions and 1 deletions
|
@ -103,7 +103,7 @@ class Scratch3MusicBlocks {
|
|||
return info.map((entry, index) => {
|
||||
const obj = {};
|
||||
obj.text = entry.name;
|
||||
obj.value = index + 1;
|
||||
obj.value = String(index + 1);
|
||||
return obj;
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue