From 56fd4763f40a86b7231d81dca2c384be3f59fa37 Mon Sep 17 00:00:00 2001 From: Alexandre Derumier Date: Fri, 17 Aug 2012 15:51:21 +0200 Subject: [PATCH] utils: display new storage type Signed-off-by: Alexandre Derumier --- www/manager/Utils.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/www/manager/Utils.js b/www/manager/Utils.js index 6b655939..135324b4 100644 --- a/www/manager/Utils.js +++ b/www/manager/Utils.js @@ -612,6 +612,14 @@ Ext.define('PVE.Utils', { statics: { return 'LVM'; } else if (value === 'iscsi') { return 'iSCSI'; + } else if (value === 'rbd') { + return 'RBD'; + } else if (value === 'sheepdog') { + return 'Sheepdog'; + } else if (value === 'nexenta') { + return 'Nexenta'; + } else if (value === 'iscsidirect') { + return 'iSCSIDirect'; } else { return PVE.Utils.unknownText; }