mirror of https://github.com/apache/nifi.git
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:
parent
90ae271692
commit
51c6910510
|
@ -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,
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue