ui: format_sdnzone_type: uppercase

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2020-04-25 18:24:53 +02:00
parent 68dc909220
commit 34d0acbd90

View File

@ -697,7 +697,7 @@ Ext.define('PVE.Utils', { utilities: {
format_sdnzone_type: function(value, md, record) {
var schema = PVE.Utils.sdnzoneSchema[value];
if (schema) {
return schema.name;
return schema.name.toUpperCase();
}
return Proxmox.Utils.unknownText;
},