summaryrefslogtreecommitdiffstats
path: root/web/react/components/edit_channel_purpose_modal.jsx
diff options
context:
space:
mode:
authorhmhealey <harrisonmhealey@gmail.com>2015-10-29 14:48:58 -0400
committerhmhealey <harrisonmhealey@gmail.com>2015-10-29 14:48:58 -0400
commit1eefbe24412738707bfc96ca6f855777417541bf (patch)
tree5f5ea61e989fa5ebc8937e8eeee2ff90eecf2662 /web/react/components/edit_channel_purpose_modal.jsx
parent444c9942fc30790fa981da65769ba5cd01ae9712 (diff)
downloadchat-1eefbe24412738707bfc96ca6f855777417541bf.tar.gz
chat-1eefbe24412738707bfc96ca6f855777417541bf.tar.bz2
chat-1eefbe24412738707bfc96ca6f855777417541bf.zip
Added help text for the channel header and purpose dialogs
Diffstat (limited to 'web/react/components/edit_channel_purpose_modal.jsx')
-rw-r--r--web/react/components/edit_channel_purpose_modal.jsx6
1 files changed, 6 insertions, 0 deletions
diff --git a/web/react/components/edit_channel_purpose_modal.jsx b/web/react/components/edit_channel_purpose_modal.jsx
index d8102642e..4d162cfe7 100644
--- a/web/react/components/edit_channel_purpose_modal.jsx
+++ b/web/react/components/edit_channel_purpose_modal.jsx
@@ -69,6 +69,11 @@ export default class EditChannelPurposeModal extends React.Component {
title = <span>{'Edit Purpose for '}<span className='name'>{this.props.channel.display_name}</span></span>;
}
+ let channelTerm = 'Channel';
+ if (this.props.channel.channelType === 'P') {
+ channelTerm = 'Group';
+ }
+
return (
<Modal
className='modal-edit-channel-purpose'
@@ -81,6 +86,7 @@ export default class EditChannelPurposeModal extends React.Component {
</Modal.Title>
</Modal.Header>
<Modal.Body>
+ <p>{`Describe how this ${channelTerm} should be used.`}</p>
<textarea
ref='purpose'
className='form-control no-resize'