diff --git a/web/react/components/post_list.jsx b/web/react/components/post_list.jsx index 67a69985f4..7748f5c2ad 100644 --- a/web/react/components/post_list.jsx +++ b/web/react/components/post_list.jsx @@ -419,7 +419,7 @@ module.exports = React.createClass({
Welcome to {uiName}!
- This is the first channel {strings.Team} mates see when they
+ This is the first channel {strings.Team}mates see when they
sign up - use it for posting updates everyone needs to know.
@@ -454,7 +454,7 @@ module.exports = React.createClass({
var createMessage;
if (creatorName !== '') {
- createMessage = (This is the start of the {uiName} {uiType} created by {creatorName} on {utils.displayDate(channel.create_at)});
+ createMessage = (This is the start of the {uiName} {uiType}, created by {creatorName} on {utils.displayDate(channel.create_at)});
} else {
createMessage = 'This is the start of the ' + uiName + ' ' + uiType + ', created on ' + utils.displayDate(channel.create_at) + '.';
}