summaryrefslogtreecommitdiffstats
path: root/web/react/components/new_channel.jsx
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2015-08-06 10:38:22 -0400
committerChristopher Speller <crspeller@gmail.com>2015-08-06 10:38:22 -0400
commit506798f5476a8f1d43ae80b3a9f58ee487f4c339 (patch)
treef11114376af620920340d883d72c73bdcca07d1a /web/react/components/new_channel.jsx
parentb48b5e7e472289938dd07b05b01c5c5d4a5d20ac (diff)
parent371b1e04eb892109cd44f18230e0247dc5aabe43 (diff)
downloadchat-506798f5476a8f1d43ae80b3a9f58ee487f4c339.tar.gz
chat-506798f5476a8f1d43ae80b3a9f58ee487f4c339.tar.bz2
chat-506798f5476a8f1d43ae80b3a9f58ee487f4c339.zip
Merge pull request #344 from nickago/MM-1646
MM-1646 Changes the word channel to group for priavte groups
Diffstat (limited to 'web/react/components/new_channel.jsx')
-rw-r--r--web/react/components/new_channel.jsx7
1 files changed, 6 insertions, 1 deletions
diff --git a/web/react/components/new_channel.jsx b/web/react/components/new_channel.jsx
index 93884f6eb..ffcbfd32d 100644
--- a/web/react/components/new_channel.jsx
+++ b/web/react/components/new_channel.jsx
@@ -107,6 +107,11 @@ module.exports = React.createClass({
serverError = <div className='form-group has-error'><label className='control-label'>{this.state.serverError}</label></div>;
}
+ var channelTerm = 'Channel';
+ if (this.state.channelType === 'P') {
+ channelTerm = 'Group';
+ }
+
return (
<div className='modal fade' id='new_channel' ref='modal' tabIndex='-1' role='dialog' aria-hidden='true'>
<div className='modal-dialog'>
@@ -116,7 +121,7 @@ module.exports = React.createClass({
<span aria-hidden='true'>&times;</span>
<span className='sr-only'>Cancel</span>
</button>
- <h4 className='modal-title'>New Channel</h4>
+ <h4 className='modal-title'>New {channelTerm}</h4>
</div>
<form role='form'>
<div className='modal-body'>