Convert menu values to string

This commit is contained in:
Eric Rosenbaum 2017-11-27 10:06:42 -05:00
parent 621087904d
commit 7e87f314fb

View file

@ -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;
});
}