Merge pull request #4331 from node-red/fix-unexpected-link-validation-err

Handle undefined linkType value for existing link-call nodes
This commit is contained in:
Nick O'Leary 2023-09-19 09:18:50 +01:00 committed by GitHub
commit 90045683c9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -275,7 +275,7 @@
value: [],
type: "link in[]",
validate: function (v, opt) {
if ((this.linkType === "static" && v.length > 0)
if (((this.linkType || "static") === "static" && v.length > 0)
|| this.linkType === "dynamic") {
return true;
}