From f4b70e5f6e436ec547104de75e5f67e31f56e60a Mon Sep 17 00:00:00 2001 From: Brian Federle Date: Tue, 22 May 2012 11:19:19 -0700 Subject: [PATCH] CS-15045 commit 7859d289debae622a15fdb6bda854a8936fd35cb Author: Pranav Saxena Date: Tue May 22 23:29:31 2012 +0530 UI does not support RAW format when hypervisor used is OVM in upload volumes --- ui/scripts/storage.js | 1 + 1 file changed, 1 insertion(+) diff --git a/ui/scripts/storage.js b/ui/scripts/storage.js index 2f70ef8cb32..21cbeed5ef2 100644 --- a/ui/scripts/storage.js +++ b/ui/scripts/storage.js @@ -207,6 +207,7 @@ label: 'label.format', select: function(args) { var items = []; + items.push({ id: 'RAW', description: 'RAW' }); items.push({ id: 'VHD', description: 'VHD' }); items.push({ id: 'OVA', description: 'OVA' }); items.push({ id: 'QCOW2', description: 'QCOW2' });