diff --git a/js/lib/models/User.js b/js/lib/models/User.js index a1b231654..cd7ead7be 100644 --- a/js/lib/models/User.js +++ b/js/lib/models/User.js @@ -17,7 +17,7 @@ Object.assign(User.prototype, { avatarUrl: Model.attribute('avatarUrl'), bio: Model.attribute('bio'), - bioHtml: computed('bio', bio => bio ? '

' + $('

').text(bio).html().replace(/\n/g, '
').autoLink() + '

' : ''), + bioHtml: computed('bio', bio => bio ? '

' + $('

').text(bio).html().replace(/\n/g, '
').autoLink({rel: 'nofollow'}) + '

' : ''), preferences: Model.attribute('preferences'), groups: Model.hasMany('groups'),