summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2016-03-05 00:42:01 +0000
committerGerrit Code Review <review@openstack.org>2016-03-05 00:42:01 +0000
commit4c503dee06de9d5eab3fb3454a0830e6270ed27c (patch)
treeba6ed8f0d817ff43569eb3866b69f9821865fe1f
parenta153311a5e886e73b55fc96493c2d4a78f27dc6f (diff)
parentf68a2a1241b3be5b854aaeaf926f04b1d1ee58f7 (diff)
downloadhorizon-4c503dee06de9d5eab3fb3454a0830e6270ed27c.tar.gz
Merge "Trust sql middleware value conversion and stick to the spec type." into stable/liberty
-rw-r--r--openstack_dashboard/dashboards/project/static/dashboard/project/workflow/launch-instance/launch-instance-model.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/openstack_dashboard/dashboards/project/static/dashboard/project/workflow/launch-instance/launch-instance-model.js b/openstack_dashboard/dashboards/project/static/dashboard/project/workflow/launch-instance/launch-instance-model.js
index c9f026b91..6910d12ae 100644
--- a/openstack_dashboard/dashboards/project/static/dashboard/project/workflow/launch-instance/launch-instance-model.js
+++ b/openstack_dashboard/dashboards/project/static/dashboard/project/workflow/launch-instance/launch-instance-model.js
@@ -414,7 +414,7 @@
SOURCE_TYPE_VOLUME_SNAPSHOT,
gettext('Volume Snapshot')
);
- volumePromises.push(cinderAPI.getVolumes({ status: 'available', bootable: 1 })
+ volumePromises.push(cinderAPI.getVolumes({ status: 'available', bootable: true })
.then(onGetVolumes));
volumePromises.push(cinderAPI.getVolumeSnapshots({ status: 'available' })
.then(onGetVolumeSnapshots));