summaryrefslogtreecommitdiffstats
path: root/web
diff options
context:
space:
mode:
authorFlorian Orben <florian.orben@gmail.com>2015-10-19 01:22:19 +0200
committerFlorian Orben <florian.orben@gmail.com>2015-10-19 01:22:19 +0200
commitfd61bebe88124d37cdf77206222426d59fb94542 (patch)
treece56056e482b1cde3853e1f9903430af1091815b /web
parent8ec6c07e3e1b62018e26022aaeb0f289f8a93a65 (diff)
downloadchat-fd61bebe88124d37cdf77206222426d59fb94542.tar.gz
chat-fd61bebe88124d37cdf77206222426d59fb94542.tar.bz2
chat-fd61bebe88124d37cdf77206222426d59fb94542.zip
Fixes wrong tooltip on user profile
Diffstat (limited to 'web')
-rw-r--r--web/react/components/user_profile.jsx4
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}