From f33e26c5fed6b8ccc096e19ac47fcf8712dca189 Mon Sep 17 00:00:00 2001 From: eyuell21 Date: Thu, 22 Jan 2026 19:42:52 +0000 Subject: [PATCH] Fixed hashtag link bug. --- front-end/components/bloom.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front-end/components/bloom.mjs b/front-end/components/bloom.mjs index 0b4166c..d46ed5d 100644 --- a/front-end/components/bloom.mjs +++ b/front-end/components/bloom.mjs @@ -37,7 +37,7 @@ const createBloom = (template, bloom) => { function _formatHashtags(text) { if (!text) return text; return text.replace( - /\B#[^#]+/g, + /\B#[^#\S]+/g, (match) => `${match}` ); }