feat(core): Live reload node/credential descriptions in development (no-changelog) (#4939)

This commit is contained in:
Valya
2023-02-08 18:26:07 +00:00
committed by GitHub
parent f23fb92696
commit 9c1f827dad
10 changed files with 134 additions and 155 deletions

View File

@@ -490,6 +490,9 @@ export const pushConnection = mixins(
this.credentialsStore.fetchCredentialTypes(false).then(() => {
this.nodeTypesStore.removeNodeTypes(nodesToBeRemoved);
});
} else if (receivedData.type === 'nodeDescriptionUpdated') {
this.nodeTypesStore.getNodeTypes();
this.credentialsStore.fetchCredentialTypes(true);
}
return true;
},