NIFI-9237:

- Similar to NIFI-9215, converting integer identifiers to strings to ensure the items are successfully retrieved when attempting to apply a tooltip.

This closes #5454

Signed-off-by: Scott Aslan <scottyaslan@gmail.com>
This commit is contained in:
Matt Gilman 2021-10-12 17:15:08 -04:00 committed by Scott Aslan
parent 90ae271692
commit 51c6910510
2 changed files with 2 additions and 2 deletions

View File

@ -542,7 +542,7 @@
// create the row for the processor type
processorTypesData.addItem({
id: i,
id: i + '',
label: nfCommon.substringAfterLast(type, '.'),
type: type,
bundle: documentedType.bundle,

View File

@ -828,7 +828,7 @@
// add the documented type
reportingTaskTypesData.addItem({
id: id++,
id: id++ + '',
label: nfCommon.substringAfterLast(documentedType.type, '.'),
type: documentedType.type,
bundle: documentedType.bundle,