mirror of https://github.com/apache/nifi.git
NIFI-8138: Add Sensitive Property value to property tooltip
Signed-off-by: Pierre Villard <pierre.villard.fr@gmail.com> This closes #4752.
This commit is contained in:
parent
7d76bcd520
commit
2d69179184
|
@ -935,6 +935,9 @@
|
|||
if (!nfCommon.isBlank(propertyDescriptor.supportsEl)) {
|
||||
tipContent.push('<b>Expression language scope:</b> ' + nfCommon.escapeHtml(propertyDescriptor.expressionLanguageScope));
|
||||
}
|
||||
if (!nfCommon.isBlank(propertyDescriptor.sensitive)) {
|
||||
tipContent.push('<b>Sensitive property:</b> ' + nfCommon.escapeHtml(propertyDescriptor.sensitive));
|
||||
}
|
||||
if (!nfCommon.isBlank(propertyDescriptor.identifiesControllerService)) {
|
||||
var formattedType = nfCommon.formatType({
|
||||
'type': propertyDescriptor.identifiesControllerService,
|
||||
|
|
Loading…
Reference in New Issue