diff options
author | Vitaly Takmazov | 2022-11-04 22:05:49 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2023-01-13 10:37:58 +0300 |
commit | f1a484cc662174717118bff1274aa473f5fa6ad9 (patch) | |
tree | 1302954eb5eb8fbbe1e7b3997edf0afe3536d603 /vnext/src/ui/helpers | |
parent | ee9f960cdcb3974f5bb9780665deddb9191a9227 (diff) |
Fix editing
Diffstat (limited to 'vnext/src/ui/helpers')
-rw-r--r-- | vnext/src/ui/helpers/BubbleStyle.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/vnext/src/ui/helpers/BubbleStyle.js b/vnext/src/ui/helpers/BubbleStyle.js index 23c2df13..d2886e1e 100644 --- a/vnext/src/ui/helpers/BubbleStyle.js +++ b/vnext/src/ui/helpers/BubbleStyle.js @@ -4,7 +4,8 @@ * @returns { import('react').CSSProperties} CSS properties */ export function chatItemStyle(me, msg) { - const isMe = me.uid === msg.user.uid; + const user = msg.user; + const isMe = me.uid === user.uid; const alignment = isMe ? 'flex-end' : 'flex-start'; return { padding: '3px 6px', |