Commit e9e052b2 authored by tgrodzinski's avatar tgrodzinski Committed by Dietmar Maurer

added sorter to bridge selection

Signed-off-by: 's avatartgrodzinski <t.grodzinski@profihost.ag>
parent b11734a6
...@@ -27,7 +27,13 @@ Ext.define('PVE.form.BridgeSelector', { ...@@ -27,7 +27,13 @@ Ext.define('PVE.form.BridgeSelector', {
var store = Ext.create('Ext.data.Store', { var store = Ext.create('Ext.data.Store', {
fields: [ 'iface', 'active', 'type' ], fields: [ 'iface', 'active', 'type' ],
filterOnLoad: true filterOnLoad: true,
sorters: [
{
property : 'iface',
direction: 'ASC'
}
]
}); });
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