fix(editor): Fix issue that new nodes did not get automatically displayed in all connected browsers (#3745)

This commit is contained in:
Omar Ajoue 2022-07-20 18:32:33 +02:00 committed by GitHub
parent 590401b655
commit 34a9beefa5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -100,7 +100,7 @@ nodesController.post(
installedPackage.installedNodes.forEach((nodeData) => {
const pushInstance = Push.getInstance();
pushInstance.send('reloadNodeType', {
name: nodeData.name,
name: nodeData.type,
version: nodeData.latestVersion,
});
});