Regression: Fix in-correct room status shown to agents (#24592)

pull/24626/head
Murtaza Patrawala 4 years ago committed by GitHub
parent 167e8ad730
commit 52f803dcde
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 12
      app/livechat/client/views/app/livechatReadOnly.html

@ -1,8 +1,8 @@
<template name="livechatReadOnly">
{{#if roomOpen}}
{{#if isPreparing}}
{{> loading}}
{{else}}
{{#if isPreparing}}
{{> loading}}
{{else}}
{{#if roomOpen}}
{{#if isOnHold}}
<div class="rc-message-box__join">
{{{_ "chat_on_hold_due_to_inactivity"}}}
@ -21,8 +21,8 @@
</div>
{{/if}}
{{/if}}
{{else}}
<p>{{_ "This_conversation_is_already_closed"}}</p>
{{/if}}
{{else}}
<p>{{_ "This_conversation_is_already_closed"}}</p>
{{/if}}
</template>

Loading…
Cancel
Save