mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-08-06 20:49:27 +00:00
sort storage list by storage id
This commit is contained in:
parent
994c33c049
commit
823e701d1c
@ -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, {
|
||||||
|
Loading…
Reference in New Issue
Block a user