Skip to content

Commit

Permalink
fix: factory with SSH URL (#1281)
Browse files Browse the repository at this point in the history
  • Loading branch information
akurinnoy authored Dec 23, 2024
1 parent 1790beb commit a78aeba
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,8 @@ class CreatingStepApplyDevfile extends ProgressStep<Props, State> {
if (resolvedDevfile === undefined) {
throw new Error('Failed to resolve the devfile.');
}
this.updateCurrentDevfile(resolvedDevfile);
const _devfile = cloneDeep(resolvedDevfile);
this.updateCurrentDevfile(_devfile);
} else {
const { devfile } = this.state;
if (devfile) {
Expand Down

0 comments on commit a78aeba

Please sign in to comment.