Skip to content

Commit 46dbd61

Browse files
committed
Fix underscore in category name
1 parent b57745c commit 46dbd61

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

web/src/components/CategoryList.astro

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,8 @@ const categoryEmojis: Record<string, string> = {
6969
};
7070
7171
function displayTitle(title: string) {
72+
title = title.replace(/_/g, ' ');
73+
7274
switch (what) {
7375
case 'all_functions':
7476
case 'client_functions':

0 commit comments

Comments
 (0)