From 1dc879c131834682aa2cd26236e26d1bf738e855 Mon Sep 17 00:00:00 2001 From: Aldrin Piri Date: Sun, 8 Feb 2015 21:37:20 -0500 Subject: [PATCH] Treating description as HTML as it has been properly escaped when added to the SlickGrid DataView Signed-off-by: Matt Gilman --- .../src/main/webapp/js/nf/canvas/nf-canvas-toolbox.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-canvas-toolbox.js b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-canvas-toolbox.js index ee91107ac8..8d005e2f0a 100644 --- a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-canvas-toolbox.js +++ b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-canvas-toolbox.js @@ -975,7 +975,7 @@ nf.CanvasToolbox = (function () { if (nf.Common.isBlank(processorType.description)) { $('#processor-type-description').attr('title', '').html('No description specified'); } else { - $('#processor-type-description').text(processorType.description).ellipsis(); + $('#processor-type-description').html(processorType.description).ellipsis(); } // populate the dom