Commit 9c297419 authored by Alexandre Derumier's avatar Alexandre Derumier Committed by Dietmar Maurer

utils: display new storage type

Signed-off-by: 's avatarAlexandre Derumier <aderumier@odiso.com>
parent aacbc887
...@@ -612,6 +612,14 @@ Ext.define('PVE.Utils', { statics: { ...@@ -612,6 +612,14 @@ Ext.define('PVE.Utils', { statics: {
return 'LVM'; return 'LVM';
} else if (value === 'iscsi') { } else if (value === 'iscsi') {
return '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 { } else {
return PVE.Utils.unknownText; return PVE.Utils.unknownText;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment