diff options
Diffstat (limited to 'src/static/js/workflows/common-models.js')
-rw-r--r-- | src/static/js/workflows/common-models.js | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/static/js/workflows/common-models.js b/src/static/js/workflows/common-models.js index 65fedb1..dc479c2 100644 --- a/src/static/js/workflows/common-models.js +++ b/src/static/js/workflows/common-models.js @@ -169,11 +169,16 @@ class FlavorBlob { this.flavor_id = incomingBlob.flavor_id; // UUID (String) this.name = incomingBlob.name; // String this.interfaces = []; // List<String> - // images are added after + this.images = []; // List<ImageBlob> + this.available_count = incomingBlob.available_count; if (incomingBlob.interfaces) { this.interfaces = incomingBlob.interfaces; } + + if (incomingBlob.images) { + this.images = incomingBlob.images; + } } } |