From fa7c14b495be64da4749f0eb1789c24f91993497 Mon Sep 17 00:00:00 2001
From: Vitaly Takmazov
Date: Fri, 5 Apr 2019 16:40:01 +0300
Subject: UserInfo in Chat
---
vnext/src/components/Chat.js | 39 +++++++++++++++++++--------------------
vnext/src/components/UserInfo.js | 2 +-
2 files changed, 20 insertions(+), 21 deletions(-)
diff --git a/vnext/src/components/Chat.js b/vnext/src/components/Chat.js
index 0da8dcde..57415d29 100644
--- a/vnext/src/components/Chat.js
+++ b/vnext/src/components/Chat.js
@@ -5,6 +5,7 @@ import moment from 'moment';
import PM from './PM';
import MessageInput from './MessageInput';
+import UserInfo from './UserInfo';
import { getChat, pm } from '../api';
@@ -56,27 +57,25 @@ export default class Chat extends React.Component {
const { chats } = this.state;
const uname = this.props.match.params.user;
return (
-
-
-
- {uname ? (
-
-
- {
- chats.map((chat) =>
-
- )
- }
-
-
- Reply...
+
+
+ {uname ? (
+
+
+ {
+ chats.map((chat) =>
+
+ )
+ }
+
+
+ Reply...
-
- ) : (
-
- )
- }
-
+
+ ) : (
+
+ )
+ }
);
}
diff --git a/vnext/src/components/UserInfo.js b/vnext/src/components/UserInfo.js
index e92ccfd5..0a13f050 100644
--- a/vnext/src/components/UserInfo.js
+++ b/vnext/src/components/UserInfo.js
@@ -41,7 +41,7 @@ export default function UserInfo(props) {
{
user.uid > 0 &&
<>
-
+
PM
--
cgit v1.2.3