Merge "Fix js error in resize instance form"

This commit is contained in:
Jenkins 2017-05-21 23:20:02 +00:00 committed by Gerrit Code Review
commit a0d13157e3

@ -88,7 +88,11 @@ horizon.addInitFunction(horizon.instances.init = function () {
for selected image and flavor for selected image and flavor
*/ */
function update_device_size(source_type) { function update_device_size(source_type) {
var volume_size = horizon.Quota.getSelectedFlavor().disk; var volume_size;
var selected_flavor = horizon.Quota.getSelectedFlavor();
if (selected_flavor) {
volume_size = selected_flavor.disk;
}
var size_field = $("#id_volume_size"); var size_field = $("#id_volume_size");
if (source_type === 'image') { if (source_type === 'image') {