From cd2e47a852d923f26f9358768fcc98acb65c64f4 Mon Sep 17 00:00:00 2001 From: Erin Nova Date: Tue, 27 Jul 2021 17:40:48 -0400 Subject: [PATCH] Make pronouns in chat stand out more --- frontend/js/chat.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/js/chat.js b/frontend/js/chat.js index 9755631..bef0eb0 100644 --- a/frontend/js/chat.js +++ b/frontend/js/chat.js @@ -66,7 +66,7 @@ async function fetchMessages() { rightBracket = '' space = '' } - printText(message.user.bold().toString() + space + leftBracket.small() + message.pronouns.small().toString() + rightBracket.small() + ": " + message.body.toString()); + printText(message.user.bold().toString() + space + "" + leftBracket.small() + message.pronouns.small().toString() + rightBracket.small() + "" + " : " + "" + message.body.toString() + ""); }