Merge pull request #3358 from node-red-hitachi/fix-property-error-tooltip

fix to make start of property error tooltip messages aligned
This commit is contained in:
Nick O'Leary 2022-01-15 19:44:18 +00:00 committed by GitHub
commit 310a279aaf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -596,7 +596,7 @@ RED.view = (function() {
},
tooltip: function(d) {
if (d.validationErrors && d.validationErrors.length > 0) {
return RED._("editor.errors.invalidProperties")+"\n - "+d.validationErrors.join("\n - ")
return RED._("editor.errors.invalidProperties")+"\n - "+d.validationErrors.join("\n - ")
}
},
show: function(n) { return !n.valid }