Commit eda53c14 authored by Dietmar Maurer's avatar Dietmar Maurer

sort storage list by storage id

parent 804b9203
...@@ -35,7 +35,11 @@ Ext.define('PVE.form.StorageSelector', { ...@@ -35,7 +35,11 @@ Ext.define('PVE.form.StorageSelector', {
me.nodename = undefined; me.nodename = undefined;
var store = Ext.create('Ext.data.Store', { var store = Ext.create('Ext.data.Store', {
fields: [ 'storage', 'active', 'type', 'avail', 'total' ] fields: [ 'storage', 'active', 'type', 'avail', 'total' ],
sorters: {
property: 'storage',
order: 'DESC'
}
}); });
Ext.apply(me, { Ext.apply(me, {
......
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