From 3f776397d13a6294bc2538c6c871d1d0a7f5a427 Mon Sep 17 00:00:00 2001 From: Steve-Mcl Date: Mon, 2 May 2022 21:24:46 +0100 Subject: [PATCH] close parent notification on "search for..." click --- .../node_modules/@node-red/editor-client/src/js/ui/deploy.js | 2 ++ 1 file changed, 2 insertions(+) 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 2022e98d6..5b73ed271 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,6 +387,7 @@ RED.deploy = (function() { text: RED._("deploy.unknownNodesButton"), class: "pull-left", click: function() { + notification.close(); RED.actions.invoke("core:search","type:unknown "); } }, @@ -487,6 +488,7 @@ RED.deploy = (function() { text: RED._("deploy.unusedConfigNodesButton"), class: "pull-left", click: function() { + notification.close(); RED.actions.invoke("core:search","is:config is:unused "); } },