sardell commented on code in PR #9889:
URL: https://github.com/apache/nifi/pull/9889#discussion_r2073823412
##########
nifi-frontend/src/main/frontend/apps/nifi/src/app/pages/flow-designer/ui/canvas/items/flow/import-from-registry/import-from-registry.component.ts:
##########
@@ -397,6 +399,7 @@ export class ImportFromRegistry extends CloseOnEscapeDialog
implements OnInit {
}),
disconnectedNodeAcknowledged:
this.clusterConnectionService.isDisconnectionAcknowledged(),
component: {
+ name:
this.importFromRegistryForm.get('customFlowName')?.value,
Review Comment:
If a user types in a value in the Custom Versioned Flow Name field then
removes the value, an empty string is sent to the backend which returns a 400
(see screenshot below). There are a couple of ways you could handle this, but
this is the most straightforward IMO.
```suggestion
name:
this.importFromRegistryForm.get('customFlowName')?.value || null,
```

--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]