summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorReed Garmsen <rgarmsen2295@gmail.com>2015-08-21 17:31:14 -0700
committerReed Garmsen <rgarmsen2295@gmail.com>2015-08-24 10:33:35 -0700
commit47168a70a17ae55b897185c0bfa2f8c7ac915a0a (patch)
tree676d0483dc3a79123805740af26083f7109ae060
parent9280dfb9352bb491236d394dfc3adac618e2694a (diff)
downloadchat-47168a70a17ae55b897185c0bfa2f8c7ac915a0a.tar.gz
chat-47168a70a17ae55b897185c0bfa2f8c7ac915a0a.tar.bz2
chat-47168a70a17ae55b897185c0bfa2f8c7ac915a0a.zip
Removes 'for' from the edit channel description modal title when editing the description of a private message channel
-rw-r--r--web/react/components/edit_channel_modal.jsx7
1 files changed, 6 insertions, 1 deletions
diff --git a/web/react/components/edit_channel_modal.jsx b/web/react/components/edit_channel_modal.jsx
index fc303bbc2..76f0c2c4d 100644
--- a/web/react/components/edit_channel_modal.jsx
+++ b/web/react/components/edit_channel_modal.jsx
@@ -50,13 +50,18 @@ module.exports = React.createClass({
render: function() {
var server_error = this.state.server_error ? <div className='form-group has-error'><br/><label className='control-label'>{ this.state.server_error }</label></div> : null;
+ var editTitle = <h4 className='modal-title' ref='title'>Edit Description</h4>;
+ if (this.state.title) {
+ editTitle = <h4 className='modal-title' ref='title'>Edit Description for <span className='name'>{this.state.title}</span></h4>;
+ }
+
return (
<div className="modal fade" ref="modal" id="edit_channel" role="dialog" tabIndex="-1" aria-hidden="true">
<div className="modal-dialog">
<div className="modal-content">
<div className="modal-header">
<button type="button" className="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
- <h4 className="modal-title" ref="title">Edit Description for <span className='name'>{this.state.title}</span></h4>
+ {editTitle}
</div>
<div className="modal-body">
<textarea className="form-control no-resize" rows="6" ref="channelDesc" maxLength="1024" value={this.state.description} onChange={this.handleUserInput}></textarea>