mirror of https://github.com/node-red/node-red.git
Change default value of tlsConfigDisableLocalFiles to false
parent
e55933706d
commit
f45a2643f2
|
@ -156,7 +156,7 @@
|
|||
clearNameData("ca");
|
||||
});
|
||||
|
||||
if (RED.settings.tlsConfigDisableLocalFiles) {
|
||||
if (RED.settings.nodeSettings.tlsConfigDisableLocalFiles) {
|
||||
$("#node-config-row-uselocalfiles").hide();
|
||||
} else {
|
||||
$("#node-config-row-uselocalfiles").show();
|
||||
|
|
|
@ -81,7 +81,7 @@ module.exports = function(RED) {
|
|||
},
|
||||
settings: {
|
||||
tlsConfigDisableLocalFiles: {
|
||||
value: true,
|
||||
value: false,
|
||||
exportable: false
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue