diff --git a/webapp/components/channel_info_modal.jsx b/webapp/components/channel_info_modal.jsx
index fce4b75db9..4829d1dd9d 100644
--- a/webapp/components/channel_info_modal.jsx
+++ b/webapp/components/channel_info_modal.jsx
@@ -2,6 +2,7 @@
// See License.txt for license information.
import * as Utils from 'utils/utils.jsx';
+import Constants from 'utils/constants.jsx';
import {FormattedMessage} from 'react-intl';
import {Modal} from 'react-bootstrap';
@@ -47,9 +48,21 @@ export default class ChannelInfoModal extends React.Component {
const channelURL = TeamStore.getCurrentTeamUrl() + '/channels/' + channel.name;
- let channelPurpose = null;
+ let channelPurpose;
if (channel.purpose) {
+ channelPurpose = channel.purpose;
+ } else if (channel.name === Constants.DEFAULT_CHANNEL) {
channelPurpose = (
+
Welcome to {display_name}!
This is the first channel teammates see when they sign up - use it for posting updates everyone needs to know.
Welcome to {display_name}!
Post messages here that you want everyone to see. Everyone automatically becomes a permanent member of this channel when they join the team.