Merge branch 'release/1.14.2'

This commit is contained in:
Sojan 2021-03-23 01:20:34 +05:30
commit a0cd1f8bcc
3 changed files with 6 additions and 3 deletions

View file

@ -48,7 +48,10 @@ class ActionCableConnector extends BaseActionCableConnector {
};
onAssigneeChanged = payload => {
this.app.$store.dispatch('updateConversation', payload);
const { id } = payload;
if (id) {
this.app.$store.dispatch('updateConversation', payload);
}
this.fetchConversationStats();
};

View file

@ -1,5 +1,5 @@
shared: &shared
version: '1.14.1'
version: '1.14.2'
development:
<<: *shared

View file

@ -1,6 +1,6 @@
{
"name": "@chatwoot/chatwoot",
"version": "1.14.1",
"version": "1.14.2",
"license": "MIT",
"scripts": {
"eslint": "eslint app/javascript --fix",