Skip to content

Commit

Permalink
Merge branch 'wrap-emoji-name-in-tooltip' into 'master'
Browse files Browse the repository at this point in the history
fix: wrap emoji name in status tooltip

See merge request kchat/webapp!955
  • Loading branch information
antonbuks committed Oct 24, 2024
2 parents a2a7133 + e21d449 commit 2f9d375
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ function CustomStatusEmoji({
<span
className='custom-status-text'
>
{customStatus.text === '' ? customStatus.emoji : customStatus.text}
{customStatus?.text === '' ? `:${customStatus?.emoji}:` : customStatus?.text}
</span>

{expires && (
Expand Down

0 comments on commit 2f9d375

Please sign in to comment.