bbende commented on code in PR #9087:
URL: https://github.com/apache/nifi/pull/9087#discussion_r1682805914
##########
nifi-frontend/src/main/frontend/apps/nifi/src/app/pages/flow-designer/ui/canvas/items/flow/import-from-registry/import-from-registry.component.ts:
##########
@@ -212,7 +212,8 @@ export class ImportFromRegistry extends CloseOnEscapeDialog
implements OnInit {
flowChanged(flowId: string): void {
const registryId = this.importFromRegistryForm.get('registry')?.value;
const bucketId = this.importFromRegistryForm.get('bucket')?.value;
- this.loadVersions(registryId, bucketId, flowId);
+ const branch = this.importFromRegistryForm.get('branch')?.value;
+ this.loadVersions(registryId, bucketId, flowId, branch);
Review Comment:
It looks like there is a similar function for `bucketChanged` which then
calls `loadFlows(registryId, bucketId)` and I think that would need to include
the branch as well right?
--
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]