mirror of
https://github.com/node-red/node-red-nodes.git
synced 2025-03-01 10:37:43 +00:00
email: Don't hide cert verification when no auth selected (#1080)
See https://github.com/node-red/node-red/issues/4860 It's still valid to not verify the cert and have no auth
This commit is contained in:
parent
df6eae9ee9
commit
a389169ac2
@ -127,13 +127,13 @@
|
|||||||
$(".node-input-password").show();
|
$(".node-input-password").show();
|
||||||
$(".node-input-saslformat").hide();
|
$(".node-input-saslformat").hide();
|
||||||
$(".node-input-token").hide();
|
$(".node-input-token").hide();
|
||||||
$(".node-input-useTLS").show();
|
// $(".node-input-useTLS").show();
|
||||||
} else if (protocol === "NONE") {
|
} else if (protocol === "NONE") {
|
||||||
$(".node-input-userid").hide();
|
$(".node-input-userid").hide();
|
||||||
$(".node-input-password").hide();
|
$(".node-input-password").hide();
|
||||||
$(".node-input-saslformat").hide();
|
$(".node-input-saslformat").hide();
|
||||||
$(".node-input-token").hide();
|
$(".node-input-token").hide();
|
||||||
$(".node-input-useTLS").hide();
|
// $(".node-input-useTLS").hide();
|
||||||
} else {
|
} else {
|
||||||
$(".node-input-userid").show();
|
$(".node-input-userid").show();
|
||||||
$(".node-input-password").hide();
|
$(".node-input-password").hide();
|
||||||
@ -141,7 +141,7 @@
|
|||||||
$(".node-input-token").show();
|
$(".node-input-token").show();
|
||||||
$("#node-input-fetch").val("trigger");
|
$("#node-input-fetch").val("trigger");
|
||||||
$("#node-input-fetch").change();
|
$("#node-input-fetch").change();
|
||||||
$(".node-input-useTLS").show();
|
// $(".node-input-useTLS").show();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
if (this.credentials.global) {
|
if (this.credentials.global) {
|
||||||
@ -610,4 +610,4 @@
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user