summaryrefslogtreecommitdiffstats
path: root/web/react
diff options
context:
space:
mode:
authorJoram Wilander <jwawilander@gmail.com>2015-08-18 11:20:14 -0400
committerJoram Wilander <jwawilander@gmail.com>2015-08-18 11:20:14 -0400
commitfda8b01297e2d932ef0b90981341bd61efc89fbf (patch)
treeb8b8e6b4dcb3f7fb87f072b950bb90eafb577f7f /web/react
parent90b492303ddb37cb378b8859ba95701e0198f1ff (diff)
parent773960a1d62681ddef088c089df174447b21cc07 (diff)
downloadchat-fda8b01297e2d932ef0b90981341bd61efc89fbf.tar.gz
chat-fda8b01297e2d932ef0b90981341bd61efc89fbf.tar.bz2
chat-fda8b01297e2d932ef0b90981341bd61efc89fbf.zip
Merge pull request #389 from nickago/MM-1799
MM-1799 Changed wording of get link modal
Diffstat (limited to 'web/react')
-rw-r--r--web/react/components/get_link_modal.jsx6
1 files changed, 5 insertions, 1 deletions
diff --git a/web/react/components/get_link_modal.jsx b/web/react/components/get_link_modal.jsx
index a01b57b26..3b10926f5 100644
--- a/web/react/components/get_link_modal.jsx
+++ b/web/react/components/get_link_modal.jsx
@@ -9,6 +9,7 @@ ZeroClipboardMixin.ZeroClipboard.config({
});
module.exports = React.createClass({
+ displayName: 'GetLinkModal',
zeroclipboardElementsSelector: '[data-copy-btn]',
mixins: [ZeroClipboardMixin],
componentDidMount: function() {
@@ -47,7 +48,10 @@ module.exports = React.createClass({
<h4 className='modal-title' id='myModalLabel'>{this.state.title} Link</h4>
</div>
<div className='modal-body'>
- <p>{'The link below is used for open ' + strings.TeamPlural + ' or if you allowed your ' + strings.Team + ' members to sign up using their ' + strings.Company + ' email addresses.'}
+ <p>
+ Send {strings.Team + 'mates'} the link below for them to sign-up to this {strings.Team} site.
+ <br /><br />
+ Be careful not to share this link publicly, since anyone with the link can join your {strings.Team}.
</p>
<textarea className='form-control no-resize' readOnly='true' value={this.state.value}></textarea>
</div>