Skip to content

Commit

Permalink
fix(commandline): remove underscores from custom theme names
Browse files Browse the repository at this point in the history
  • Loading branch information
Miodec committed Aug 31, 2023
1 parent 4d335e2 commit 24cd375
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/ts/commandline/lists/custom-themes-list.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export function update(): void {
DB.getSnapshot()?.customThemes.forEach((theme) => {
subgroup.list.push({
id: "setCustomThemeId" + theme._id,
display: theme.name,
display: theme.name.replace(/_/gi, " "),
configValue: theme._id,
hover: (): void => {
ThemeController.preview(theme._id, true);
Expand Down

0 comments on commit 24cd375

Please sign in to comment.