Skip to content

Commit

Permalink
Merge pull request #735 from CodeCrowCorp/dev
Browse files Browse the repository at this point in the history
Fix: removed extra spacing on commands
  • Loading branch information
gagansuie authored Oct 1, 2023
2 parents 54d0700 + 33ff95e commit 6232fd7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/components/Channel/Chat/ChatInput.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@
<!-- svelte-ignore a11y-click-events-have-key-events -->
<li
on:click={() => {
chatMessage = chatMessage.replace(/@/g, '@' + user.username) + ' '
chatMessage = chatMessage.replace(/@/g, '@' + user.username)
selectedUser = idx
}}>
<span class={'text-sm w-full' + (selectedUser == idx ? ' bg-gray-600' : '')}>
Expand Down

0 comments on commit 6232fd7

Please sign in to comment.