Skip to content

Commit

Permalink
[FIX] Livechat dashboard average and reaction time labels (#14845)
Browse files Browse the repository at this point in the history
  • Loading branch information
anandpathak authored and sampaiodiego committed Jul 19, 2019
1 parent ae796ac commit c4127e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/livechat/client/lib/dataHandler.js
Original file line number Diff line number Diff line change
Expand Up @@ -190,10 +190,10 @@ export const getTimingsOverviewData = (dbCursor) => {
});

return [{
title: 'Avg_response_time',
title: 'Avg_reaction_time',
value: total ? secondsToHHMMSS((totalReactionTime / total).toFixed(2)) : '-',
}, {
title: 'Avg_reaction_time',
title: 'Avg_response_time',
value: total ? secondsToHHMMSS((totalResponseTime / total).toFixed(2)) : '-',
}];
};

0 comments on commit c4127e6

Please sign in to comment.