diff --git a/js/src/forum/utils/getMentionText.js b/js/src/forum/utils/getMentionText.js index 5a6c973..99e92af 100644 --- a/js/src/forum/utils/getMentionText.js +++ b/js/src/forum/utils/getMentionText.js @@ -27,7 +27,7 @@ export default function getMentionText(user, postId) { } // @"Display name"#UserID const cleanText = getCleanDisplayName(user); - return `@"${cleanText}"${user.id()}`; + return `@"${cleanText}"#${user.id()}`; } else { // @"Display name"#pPostID const cleanText = getCleanDisplayName(user);