|
@@ -315,6 +315,11 @@ export const matchVoicePart = (id: number | string, type: "SINGLE" | "CONCERT"):
|
|
|
ocarina: "ocarina",
|
|
|
nai: "melodica",
|
|
|
BaroqueRecorder: 'baroque-recorder',
|
|
|
+ 'Drum Set': 24,
|
|
|
+ 'Marimba': 26,
|
|
|
+ 'Vibraphone': 27,
|
|
|
+ 'Tubular Bells': 30,
|
|
|
+ 'Mallets': 32,
|
|
|
};
|
|
|
let _track;
|
|
|
if (typeof code === "string") {
|
|
@@ -475,7 +480,7 @@ export const subjectFingering = (subjectId: number | string): IFingering => {
|
|
|
id: 38,
|
|
|
};
|
|
|
default:
|
|
|
- return {};
|
|
|
+ return typeof subjectId === 'number' ? { id: subjectId } : {};
|
|
|
}
|
|
|
};
|
|
|
|