summaryrefslogtreecommitdiffstats
path: root/web/react/components/post_list.jsx
diff options
context:
space:
mode:
authorAsaad Mahmood <Unknowngi@live.com>2015-08-21 00:34:49 +0500
committerAsaad Mahmood <Unknowngi@live.com>2015-08-21 15:41:10 +0500
commit3a76e82cdb5b6c9ef19eb6a942e27fc70881f95f (patch)
tree957a9a72c27a4d1e399d44dd3004aab7c7317fd2 /web/react/components/post_list.jsx
parent5ab8c7cad05ed33d2439e26c2c6f650415ceeee8 (diff)
downloadchat-3a76e82cdb5b6c9ef19eb6a942e27fc70881f95f.tar.gz
chat-3a76e82cdb5b6c9ef19eb6a942e27fc70881f95f.tar.bz2
chat-3a76e82cdb5b6c9ef19eb6a942e27fc70881f95f.zip
Updating intro text for channels
Diffstat (limited to 'web/react/components/post_list.jsx')
-rw-r--r--web/react/components/post_list.jsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/web/react/components/post_list.jsx b/web/react/components/post_list.jsx
index 67a69985f..7748f5c2a 100644
--- a/web/react/components/post_list.jsx
+++ b/web/react/components/post_list.jsx
@@ -419,7 +419,7 @@ module.exports = React.createClass({
<p className='channel-intro__content'>
Welcome to <strong>{uiName}</strong>!
<br/><br/>
- This is the first channel {strings.Team} mates see when they
+ This is the first channel {strings.Team}mates see when they
<br/>
sign up - use it for posting updates everyone needs to know.
<br/><br/>
@@ -454,7 +454,7 @@ module.exports = React.createClass({
var createMessage;
if (creatorName !== '') {
- createMessage = (<span>This is the start of the <strong>{uiName}</strong> {uiType} created by <strong>{creatorName}</strong> on <strong>{utils.displayDate(channel.create_at)}</strong></span>);
+ createMessage = (<span>This is the start of the <strong>{uiName}</strong> {uiType}, created by <strong>{creatorName}</strong> on <strong>{utils.displayDate(channel.create_at)}</strong></span>);
} else {
createMessage = 'This is the start of the ' + uiName + ' ' + uiType + ', created on ' + utils.displayDate(channel.create_at) + '.';
}