Reset docker images correctly when changing egg; closes #2895

This commit is contained in:
Dane Everitt 2020-12-25 15:43:44 -08:00
parent 87e9d5e82a
commit 9193db9d46
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
3 changed files with 3 additions and 1 deletions

View file

@ -120,6 +120,7 @@
$('#setDefaultImage').html(_.get(objectChain, 'docker_images.0', 'undefined'));
const images = _.get(objectChain, 'docker_images', [])
$('#pDockerImage').html('');
for (let i = 0; i < images.length; i++) {
let opt = document.createElement('option');
opt.value = images[i];