aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/ui
diff options
context:
space:
mode:
Diffstat (limited to 'ui')
-rw-r--r--ui/src/components/HomeView.svelte2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/src/components/HomeView.svelte b/ui/src/components/HomeView.svelte
index 732545f..7bb7e44 100644
--- a/ui/src/components/HomeView.svelte
+++ b/ui/src/components/HomeView.svelte
@@ -49,7 +49,7 @@
};
// Replace emojis
- let processed = body.replace(/:[a-z0-9_]+:/g, (match) => emojiMap[match] || match);
+ processed = processed.replace(/:[a-z0-9_]+:/g, (match) => emojiMap[match] || match);
// GitHub commit hash linking (simple version for 7-40 hex chars inside backticks)
processed = processed.replace(/`([0-9a-f]{7,40})`/g, (match, hash) => {