mirror of https://github.com/apache/nifi.git
Treating description as HTML as it has been properly escaped when added to the SlickGrid DataView
Signed-off-by: Matt Gilman <matt.c.gilman@gmail.com>
This commit is contained in:
parent
d36a71c25c
commit
1dc879c131
|
@ -975,7 +975,7 @@ nf.CanvasToolbox = (function () {
|
|||
if (nf.Common.isBlank(processorType.description)) {
|
||||
$('#processor-type-description').attr('title', '').html('<span class="unset">No description specified</span>');
|
||||
} else {
|
||||
$('#processor-type-description').text(processorType.description).ellipsis();
|
||||
$('#processor-type-description').html(processorType.description).ellipsis();
|
||||
}
|
||||
|
||||
// populate the dom
|
||||
|
|
Loading…
Reference in New Issue