mirror of https://github.com/node-red/node-red.git
close parent notification on "search for..." click
parent
1ec75035ba
commit
3f776397d1
|
@ -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 ");
|
||||
}
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue