Skip to content

Commit

Permalink
Regression: Fix in-correct room status shown to agents (#24592)
Browse files Browse the repository at this point in the history
  • Loading branch information
murtaza98 authored and KevLehman committed Apr 12, 2022
1 parent cf940e2 commit f75bc71
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions app/livechat/client/views/app/livechatReadOnly.html
Original file line number Diff line number Diff line change
@@ -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"}}}
Expand All @@ -18,8 +18,8 @@
{{_ "room_is_read_only"}}
{{/if}}
{{/if}}
{{else}}
<p>{{_ "This_conversation_is_already_closed"}}</p>
{{/if}}
{{else}}
<p>{{_ "This_conversation_is_already_closed"}}</p>
{{/if}}
</template>

0 comments on commit f75bc71

Please sign in to comment.