Commit 739c3fbcd4a85d8ae8d461de430155c47835fafc
1 parent
585c86b4
Exists in
master
and in
111 other branches
Fix sorter definition in the ExplorerUI
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
js/app/views/ExplorerUI.js
... | ... | @@ -263,8 +263,8 @@ Ext.define('amdaUI.ExplorerUI', { |
263 | 263 | nodeType : treeType |
264 | 264 | }, |
265 | 265 | model: 'amdaModel.AmdaNode', |
266 | - sorters:[{ direction: 'DES' }, | |
267 | - { sorterFn: function(o1, o2){ | |
266 | + sorters:[{ direction: 'ASC' , | |
267 | + sorterFn: function(o1, o2){ | |
268 | 268 | if (o1.get('nodeType') !== 'localParam') |
269 | 269 | return; |
270 | 270 | |
... | ... |