diff --git a/app/assets/javascripts/app/controllers/widget/organization.js.coffee b/app/assets/javascripts/app/controllers/widget/organization.js.coffee index c5c1be3e8..e53627f10 100644 --- a/app/assets/javascripts/app/controllers/widget/organization.js.coffee +++ b/app/assets/javascripts/app/controllers/widget/organization.js.coffee @@ -26,7 +26,7 @@ class App.WidgetOrganization extends App.Controller name = nameNew # add to show if value exists - if organization[name] && attributeConfig.shown + if ( organization[name] || attributeConfig.tag is 'richtext' ) && attributeConfig.shown # do not show firstname and lastname / already show via diplayName() if name isnt 'name' diff --git a/app/assets/javascripts/app/controllers/widget/user.js.coffee b/app/assets/javascripts/app/controllers/widget/user.js.coffee index a0aa76512..6db505124 100644 --- a/app/assets/javascripts/app/controllers/widget/user.js.coffee +++ b/app/assets/javascripts/app/controllers/widget/user.js.coffee @@ -28,7 +28,7 @@ class App.WidgetUser extends App.Controller name = nameNew # add to show if value exists - if user[name] && attributeConfig.shown + if ( user[name] || attributeConfig.tag is 'richtext' ) && attributeConfig.shown # do not show firstname and lastname / already show via diplayName() if name isnt 'firstname' && name isnt 'lastname' && name isnt 'organization'