Use "Halbgeviertstrich" in instrument widget

Resolves MS-671 #complete
This commit is contained in:
Ramon Wenger 2023-04-11 16:52:10 +02:00
parent bbcfb98af6
commit a61c5a661b
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ const instrumentType = (instrument) => {
}; };
const instrumentCategory = (instrument) => { const instrumentCategory = (instrument) => {
return `${flavor.textInstruments} - ${instrumentType(instrument)}`; return `${flavor.textInstruments} ${instrumentType(instrument)}`;
}; };
export default instrumentType; export default instrumentType;