summaryrefslogtreecommitdiffstats
path: root/web/react/components/signup_user_complete.jsx
diff options
context:
space:
mode:
authorAsaad Mahmood <Unknowngi@live.com>2015-10-12 20:55:40 +0500
committerAsaad Mahmood <Unknowngi@live.com>2015-10-12 20:55:40 +0500
commit72b3a1d695f0dc206c2bc0f22a7ae615aa92aad6 (patch)
tree4ea3ce84321124994e22e5081dcd05f7a7f3d875 /web/react/components/signup_user_complete.jsx
parentf55416d9f45afcb310246426366cd261f138029f (diff)
downloadchat-72b3a1d695f0dc206c2bc0f22a7ae615aa92aad6.tar.gz
chat-72b3a1d695f0dc206c2bc0f22a7ae615aa92aad6.tar.bz2
chat-72b3a1d695f0dc206c2bc0f22a7ae615aa92aad6.zip
Other UI Improvements
Diffstat (limited to 'web/react/components/signup_user_complete.jsx')
-rw-r--r--web/react/components/signup_user_complete.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/react/components/signup_user_complete.jsx b/web/react/components/signup_user_complete.jsx
index 75661f812..8a3af707f 100644
--- a/web/react/components/signup_user_complete.jsx
+++ b/web/react/components/signup_user_complete.jsx
@@ -149,7 +149,7 @@ export default class SignupUserComplete extends React.Component {
// set up the email entry and hide it if an email was provided
var yourEmailIs = '';
if (this.state.user.email) {
- yourEmailIs = <span>Your email address is {this.state.user.email}. You'll use this address to sign in to {global.window.config.SiteName}.</span>;
+ yourEmailIs = <span>Your email address is <strong>{this.state.user.email}</strong>. You'll use this address to sign in to {global.window.config.SiteName}.</span>;
}
var emailContainerStyle = 'margin--extra';