summaryrefslogtreecommitdiffstats
path: root/web
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 00:34:49 +0500
commitfd7efdb768febf2630473b13f5bf8e44a1abde64 (patch)
tree258e8e0e4ca1111003bb375c3c52fdbeb36d5aff /web
parent2c97e4a5d301eb7b9ed822654ec7cc27c548856d (diff)
downloadchat-fd7efdb768febf2630473b13f5bf8e44a1abde64.tar.gz
chat-fd7efdb768febf2630473b13f5bf8e44a1abde64.tar.bz2
chat-fd7efdb768febf2630473b13f5bf8e44a1abde64.zip
Updating intro text for channels
Diffstat (limited to 'web')
-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) + '.';
}