diff options
author | Harrison Healey <harrisonmhealey@gmail.com> | 2015-10-19 10:10:35 -0400 |
---|---|---|
committer | Harrison Healey <harrisonmhealey@gmail.com> | 2015-10-19 10:10:35 -0400 |
commit | 9a71222db06f5716c435051be05c1d6b7f1eea14 (patch) | |
tree | b851f0e05f66b57a8c7c280b23bbafd505d300cc /web/react/components/user_profile.jsx | |
parent | 2d0b9529417ef2cf4d2d9cccbd88b065b0db77db (diff) | |
parent | fd61bebe88124d37cdf77206222426d59fb94542 (diff) | |
download | chat-9a71222db06f5716c435051be05c1d6b7f1eea14.tar.gz chat-9a71222db06f5716c435051be05c1d6b7f1eea14.tar.bz2 chat-9a71222db06f5716c435051be05c1d6b7f1eea14.zip |
Merge pull request #1102 from florianorben/fix_email_tooltip
Fixes wrong tooltip on user profile
Diffstat (limited to 'web/react/components/user_profile.jsx')
-rw-r--r-- | web/react/components/user_profile.jsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web/react/components/user_profile.jsx b/web/react/components/user_profile.jsx index da0c1aaf9..540331663 100644 --- a/web/react/components/user_profile.jsx +++ b/web/react/components/user_profile.jsx @@ -86,11 +86,11 @@ export default class UserProfile extends React.Component { dataContent.push( <div data-toggle='tooltip' - title="' + this.state.profile.email + '" + title={this.state.profile.email} key='user-popover-email' > <a - href="mailto:' + this.state.profile.email + '" + href={'mailto:' + this.state.profile.email} className='text-nowrap text-lowercase user-popover__email' > {this.state.profile.email} |