server: Remove dashes from syntax theme name

pull/526/head
Elian Doran 2024-10-27 17:25:05 +07:00
parent 7952a5a81e
commit e1ae014b74
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

@ -150,7 +150,7 @@ function getSyntaxHighlightingThemes() {
return { return {
val: `default:${nameWithoutExtension}`, val: `default:${nameWithoutExtension}`,
title: nameWithoutExtension title: nameWithoutExtension.replace(/-/g, " ")
}; };
}); });
return allThemes; return allThemes;