Skip to content

Commit

Permalink
autocomplete: show email address of customers (refs: zammad#2436)
Browse files Browse the repository at this point in the history
  • Loading branch information
martinvonwittich committed Jan 26, 2019
1 parent db69e55 commit 5826ee8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
Expand Up @@ -8,11 +8,14 @@
<% else: %>
<%= @object.displayName() %>
<% end %>
<% if @object.email: %>
<span class="recipientList-email">- <%= @object.email %></span>
<% end %>
<% if @object.organization: %>
<span class="recipientList-detail">- <%= @object.organization.displayName() %></span>
<% end %>
</div>
<% if @object.active is false: %>
<div class="recipientList-status"><%= @Ti('inactive') %></div>
<% end %>
</li>
</li>
4 changes: 4 additions & 0 deletions app/assets/stylesheets/zammad.scss
Expand Up @@ -6862,6 +6862,10 @@ footer {
opacity: 1;
}

.recipientList-email {
opacity: 0.5;
}

.recipientList-detail {
opacity: 0.5;
}
Expand Down

0 comments on commit 5826ee8

Please sign in to comment.