diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index dd51077c6..141f56096 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -167,6 +167,17 @@ job_integration_clearbit:
- ruby -I test test/integration/clearbit_test.rb
- rake db:drop
+job_integration_sipgate:
+ stage: test
+ tags:
+ - core
+ script:
+ - export RAILS_ENV=test
+ - rake db:create
+ - rake db:migrate
+ - ruby -I test test/integration/sipgate_controller_test.rb
+ - rake db:drop
+
job_integration_es_mysql:
stage: test
tags:
diff --git a/app/assets/javascripts/app/views/cti/index.jst.eco b/app/assets/javascripts/app/views/cti/index.jst.eco
index 50ff63788..a6a30cecf 100644
--- a/app/assets/javascripts/app/views/cti/index.jst.eco
+++ b/app/assets/javascripts/app/views/cti/index.jst.eco
@@ -38,11 +38,16 @@
<% end %>
<% end %>
<% end %>
- <% if !shown: %>
+ <% if !shown && item.from_comment: %>
+ <% shown = true %>
<% if item.from_comment: %><%= item.from_comment %><% end %>
<% end %>
- <%= item.from %>
+ <% if shown: %>
+ <%= item.from %>
+ <% else: %>
+ <%= item.from %>
+ <% end %>