|
@@ -50,7 +50,8 @@ function CreatePullRequestButton({
|
|
|
run_id: autofixData?.run_id,
|
|
|
payload: {
|
|
|
type: 'create_pr',
|
|
|
- repo_id: change.repo_id,
|
|
|
+ repo_external_id: change.repo_external_id,
|
|
|
+ repo_id: change.repo_id, // The repo_id is only here for temporary backwards compatibility for LA customers, and we should remove it soon.
|
|
|
},
|
|
|
},
|
|
|
});
|
|
@@ -243,7 +244,7 @@ export function AutofixChanges({
|
|
|
return (
|
|
|
<Content>
|
|
|
{step.changes.map((change, i) => (
|
|
|
- <Fragment key={change.repo_id}>
|
|
|
+ <Fragment key={change.repo_external_id}>
|
|
|
{i > 0 && <Separator />}
|
|
|
<AutofixRepoChange change={change} groupId={groupId} isLastStep={isLastStep} />
|
|
|
</Fragment>
|