Merge branch 'develop' of github.com:martini/zammad into develop
This commit is contained in:
commit
4df599b28a
3 changed files with 3 additions and 3 deletions
|
@ -215,7 +215,7 @@ class chatWindow extends App.Controller
|
|||
(data) =>
|
||||
return if data.session_id isnt @session.session_id
|
||||
return if data.self_written
|
||||
@addStatusMessage("#{data.realname} was leaving the conversation")
|
||||
@addStatusMessage("<strong>#{data.realname}</strong> has left the conversation")
|
||||
@goOffline()
|
||||
)
|
||||
|
||||
|
|
|
@ -7255,7 +7255,7 @@ output {
|
|||
}
|
||||
|
||||
.chat-message--customer.chat-message--new {
|
||||
font-weight: 500;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.chat-message--agent {
|
||||
|
|
|
@ -21,7 +21,7 @@ class Sessions::Event::ChatSessionClose < Sessions::Event::ChatBase
|
|||
}
|
||||
end
|
||||
|
||||
realname = 'anonymous'
|
||||
realname = 'Anonymous'
|
||||
if @session && @session['id']
|
||||
realname = User.find(@session['id']).fullname
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue