Skip to content

Commit

Permalink
Add missing place
Browse files Browse the repository at this point in the history
  • Loading branch information
mustard-mh committed May 15, 2024
1 parent 42a2e55 commit 7883ed5
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions dev/preview/workflow/preview/patch-ide-configmap.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,10 @@ for (let ide in json.ideOptions.options) {
}
if (["code", "code1_85"].includes(ide)) {
json.ideOptions.options[ide].image = replaceImage(json.ideOptions.options[ide].image);
json.ideOptions.options[ide].imageLayers = json.ideOptions.options[ide].imageLayers.map(replaceImage);
json.ideOptions.options[ide].versions = json.ideOptions.options[ide].versions?.map((version) => {
version.image = replaceImage(version.image);
version.imageLayers = version.imageLayers.map(replaceImage);
return version;
});
}
Expand Down

0 comments on commit 7883ed5

Please sign in to comment.