utils: display new storage type

Signed-off-by: Alexandre Derumier <aderumier@odiso.com>
This commit is contained in:
Alexandre Derumier 2012-08-17 15:51:21 +02:00 committed by Dietmar Maurer
parent aacbc8879b
commit 9c2974199e

View File

@ -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;
}