fix: Disable typing indicator for user when agent is typing a private note (#3303)
This commit is contained in:
@@ -55,7 +55,10 @@ class ActionCableConnector extends BaseActionCableConnector {
|
||||
ActionCableConnector.refreshConnector(pubsubToken);
|
||||
};
|
||||
|
||||
onTypingOn = () => {
|
||||
onTypingOn = data => {
|
||||
if (data.is_private) {
|
||||
return
|
||||
}
|
||||
this.clearTimer();
|
||||
this.app.$store.dispatch('conversation/toggleAgentTyping', {
|
||||
status: 'on',
|
||||
|
||||
Reference in New Issue
Block a user