Merge pull request #1102 from florianorben/fix_email_tooltip

Fixes wrong tooltip on user profile
Этот коммит содержится в:
Harrison Healey
2015-10-19 10:10:35 -04:00
родитель 2d0b952941 fd61bebe88
Коммит 9a71222db0

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

@@ -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}