mirror of https://github.com/node-red/node-red.git
Merge pull request #2259 from kazuhitoyokoi/master-fixtabsmenu
Remove tab menu from node property UI for subflow and configuration nodespull/2258/head
commit
189bde7c9c
|
@ -1686,7 +1686,8 @@ RED.editor = (function() {
|
|||
RED.tray.resize();
|
||||
}
|
||||
},
|
||||
collapsible: true
|
||||
collapsible: true,
|
||||
menu: false
|
||||
});
|
||||
|
||||
var nodePropertiesTab = {
|
||||
|
@ -2226,7 +2227,8 @@ RED.editor = (function() {
|
|||
RED.tray.resize();
|
||||
}
|
||||
},
|
||||
collapsible: true
|
||||
collapsible: true,
|
||||
menu: false
|
||||
});
|
||||
|
||||
var nodePropertiesTab = {
|
||||
|
|
Loading…
Reference in New Issue