diff --git a/app/assets/stylesheets/shared/smart_annotation.scss b/app/assets/stylesheets/shared/smart_annotation.scss
index 4906c375f..2e8915788 100644
--- a/app/assets/stylesheets/shared/smart_annotation.scss
+++ b/app/assets/stylesheets/shared/smart_annotation.scss
@@ -219,6 +219,9 @@
}
.atwho-user-container {
+ display: inline-block;
+ white-space: nowrap;
+
.atwho-user-popover {
cursor: pointer;
line-height: 1.25rem;
diff --git a/app/services/smart_annotations/html_preview.rb b/app/services/smart_annotations/html_preview.rb
index deae4d344..b741bcbcd 100644
--- a/app/services/smart_annotations/html_preview.rb
+++ b/app/services/smart_annotations/html_preview.rb
@@ -26,9 +26,8 @@ module SmartAnnotations
return "Exp#{object.name} #{I18n.t('atwho.res.archived')}"
end
- "
- Exp#{object.name}
- "
+ "" \
+ "Exp#{object.name}"
end
def generate_tsk_snippet(_, object)
diff --git a/app/views/shared/_atwho_user_container.erb b/app/views/shared/_atwho_user_container.erb
index ac4a60d8c..c6d673aae 100644
--- a/app/views/shared/_atwho_user_container.erb
+++ b/app/views/shared/_atwho_user_container.erb
@@ -28,4 +28,4 @@
<% unless skip_user_status || user_still_in_team %>
<%= I18n.t('atwho.res.removed') %>
<% end %>
-
+
\ No newline at end of file