From 97f9ed476a52886c8b2918f2e9f397377b514c8a Mon Sep 17 00:00:00 2001 From: Nick O'Leary Date: Wed, 25 Feb 2026 15:50:40 +0000 Subject: [PATCH] Ensure config sidebar tooltip handles html content --- .../@node-red/editor-client/src/js/ui/tab-config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/node_modules/@node-red/editor-client/src/js/ui/tab-config.js b/packages/node_modules/@node-red/editor-client/src/js/ui/tab-config.js index 912f0e06f..22ade35c9 100644 --- a/packages/node_modules/@node-red/editor-client/src/js/ui/tab-config.js +++ b/packages/node_modules/@node-red/editor-client/src/js/ui/tab-config.js @@ -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") + "
- " + node.validationErrors.join("
- "); + return $('' + RED._("editor.errors.invalidProperties") + "
- " + node.validationErrors.join("
- ") + '
'); } }) }