Fixes wrong tooltip on user profile

Этот коммит содержится в:
Florian Orben
2015-10-19 01:22:19 +02:00
родитель 8ec6c07e3e
Коммит fd61bebe88

Просмотреть файл

@@ -86,11 +86,11 @@ export default class UserProfile extends React.Component {
dataContent.push( dataContent.push(
<div <div
data-toggle='tooltip' data-toggle='tooltip'
title="' + this.state.profile.email + '" title={this.state.profile.email}
key='user-popover-email' key='user-popover-email'
> >
<a <a
href="mailto:' + this.state.profile.email + '" href={'mailto:' + this.state.profile.email}
className='text-nowrap text-lowercase user-popover__email' className='text-nowrap text-lowercase user-popover__email'
> >
{this.state.profile.email} {this.state.profile.email}