aboutsummaryrefslogtreecommitdiff
path: root/vnext/src/components/Chat.js
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2018-06-28 17:42:55 +0300
committerGravatar Vitaly Takmazov2023-01-13 10:37:53 +0300
commit416acd32c4fd435cd0f86805b40afbadb135b089 (patch)
tree18ce54fd8a11bc2a9eca3e864819e0894988fb50 /vnext/src/components/Chat.js
parent5d9e08a12ce5b97344213cf8b5dea7b0328e7db3 (diff)
PM styling
Diffstat (limited to 'vnext/src/components/Chat.js')
-rw-r--r--vnext/src/components/Chat.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/vnext/src/components/Chat.js b/vnext/src/components/Chat.js
index e7beef35..66e7f804 100644
--- a/vnext/src/components/Chat.js
+++ b/vnext/src/components/Chat.js
@@ -52,7 +52,7 @@ export default class Chat extends React.Component {
<ul style={chatStyle} ref="chats">
{
chats.map((chat) =>
- <PM key={moment.utc(chat.timestamp).valueOf()} chat={chat} />
+ <PM key={moment.utc(chat.timestamp).valueOf()} chat={chat} {...this.props} />
)
}
</ul>