Skip to content
Snippets Groups Projects
Unverified Commit 4be6a275 authored by Rafael Ferreira's avatar Rafael Ferreira Committed by GitHub
Browse files

fix multiverse issue lastMessageTs related (#21608)

parent b226da38
No related branches found
No related tags found
No related merge requests found
...@@ -168,7 +168,7 @@ function ChatInfo({ id, route }) { ...@@ -168,7 +168,7 @@ function ChatInfo({ id, route }) {
<Info>{formatDuration(metrics.response.avg)}</Info> <Info>{formatDuration(metrics.response.avg)}</Info>
</> </>
)} )}
{!waitingResponse && ( {!waitingResponse && responseBy?.lastMessageTs && (
<> <>
<Label>{t('Inactivity_Time')}</Label> <Label>{t('Inactivity_Time')}</Label>
<Info>{moment(responseBy.lastMessageTs).fromNow(true)}</Info> <Info>{moment(responseBy.lastMessageTs).fromNow(true)}</Info>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment