Skip to content

Commit

Permalink
add branch to loadFlows call on bucketChange
Browse files Browse the repository at this point in the history
  • Loading branch information
rfellows committed Jul 23, 2024
1 parent 7c9e995 commit 16b2cde
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,8 @@ export class ImportFromRegistry extends CloseOnEscapeDialog implements OnInit {
bucketChanged(bucketId: string): void {
this.clearFlows();
const registryId = this.importFromRegistryForm.get('registry')?.value;
this.loadFlows(registryId, bucketId);
const branch = this.importFromRegistryForm.get('branch')?.value;
this.loadFlows(registryId, bucketId, branch);
}

private clearFlows() {
Expand Down

0 comments on commit 16b2cde

Please sign in to comment.