From 97b7b7b9688db711deac369d5f307355f8d8db12 Mon Sep 17 00:00:00 2001 From: Steve-Mcl Date: Mon, 2 May 2022 21:22:45 +0100 Subject: [PATCH] ensure space after search terms --- packages/node_modules/@node-red/editor-client/src/js/red.js | 2 +- .../@node-red/editor-client/src/js/ui/deploy.js | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/node_modules/@node-red/editor-client/src/js/red.js b/packages/node_modules/@node-red/editor-client/src/js/red.js index d84e727ed..57d2d1e33 100644 --- a/packages/node_modules/@node-red/editor-client/src/js/red.js +++ b/packages/node_modules/@node-red/editor-client/src/js/red.js @@ -361,7 +361,7 @@ var RED = (function() { text: RED._("notification.label.unknownNodesButton"), class: "pull-left", click: function() { - RED.actions.invoke("core:search", "type:unknown"); + RED.actions.invoke("core:search", "type:unknown "); } }, { diff --git a/packages/node_modules/@node-red/editor-client/src/js/ui/deploy.js b/packages/node_modules/@node-red/editor-client/src/js/ui/deploy.js index 686870866..012a711b3 100644 --- a/packages/node_modules/@node-red/editor-client/src/js/ui/deploy.js +++ b/packages/node_modules/@node-red/editor-client/src/js/ui/deploy.js @@ -387,7 +387,7 @@ RED.deploy = (function() { text: RED._("deploy.unknownNodesButton"), class: "pull-left", click: function() { - RED.actions.invoke("core:search","type:unknown"); + RED.actions.invoke("core:search","type:unknown "); } }, { @@ -414,7 +414,7 @@ RED.deploy = (function() { class: "pull-left", click: function() { notification.close(); - RED.actions.invoke("core:search","is:invalid"); + RED.actions.invoke("core:search","is:invalid "); } }, { @@ -486,7 +486,7 @@ RED.deploy = (function() { text: RED._("deploy.unusedConfigNodesButton"), class: "pull-left", click: function() { - RED.actions.invoke("core:search","is:config is:unused"); + RED.actions.invoke("core:search","is:config is:unused "); } }, {