aboutsummaryrefslogtreecommitdiff
path: root/vnext/src/ui/helpers
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2022-11-04 22:05:49 +0300
committerGravatar Vitaly Takmazov2023-01-13 10:37:58 +0300
commitf1a484cc662174717118bff1274aa473f5fa6ad9 (patch)
tree1302954eb5eb8fbbe1e7b3997edf0afe3536d603 /vnext/src/ui/helpers
parentee9f960cdcb3974f5bb9780665deddb9191a9227 (diff)
Fix editing
Diffstat (limited to 'vnext/src/ui/helpers')
-rw-r--r--vnext/src/ui/helpers/BubbleStyle.js3
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',