Ensure config sidebar tooltip handles html content

pull/5501/head
Nick O'Leary 2026-02-25 15:50:40 +00:00
parent 3e2e30f4dd
commit 97f9ed476a
No known key found for this signature in database
GPG Key ID: 4F2157149161A6C9
1 changed files with 1 additions and 1 deletions

View File

@ -210,7 +210,7 @@ RED.sidebar.config = (function() {
nodeDiv.addClass("red-ui-palette-node-config-invalid");
RED.popover.tooltip(nodeDivAnnotations, function () {
if (node.validationErrors && node.validationErrors.length > 0) {
return RED._("editor.errors.invalidProperties") + "<br> - " + node.validationErrors.join("<br> - ");
return $('<span>' + RED._("editor.errors.invalidProperties") + "<br> - " + node.validationErrors.join("<br> - ") + '</span>');
}
})
}