Skip to content

Commit

Permalink
fix column order in Custom Builds
Browse files Browse the repository at this point in the history
  • Loading branch information
anatskiy committed Sep 16, 2017
1 parent 13881bd commit f3c593f
Show file tree
Hide file tree
Showing 10 changed files with 37 additions and 37 deletions.
4 changes: 2 additions & 2 deletions client/galaxy/scripts/mvc/user/user-custom-builds.js
Expand Up @@ -55,8 +55,8 @@ define( [ 'utils/utils', 'mvc/ui/ui-misc', 'mvc/form/form-view', 'mvc/ui/ui-tabl
this.table.delAll();
this.collection.sort();
this.collection.each( function( model ) {
self.table.add( model.id );
self.table.add( model.get( 'name' ) );
self.table.add( model.id );
self.table.add( model.get( 'count' ) !== undefined ? model.get( 'count' ) : 'Processing...' );
self.table.add( ( new Ui.ButtonIcon({
icon : 'fa-trash-o',
Expand Down Expand Up @@ -219,4 +219,4 @@ define( [ 'utils/utils', 'mvc/ui/ui-misc', 'mvc/form/form-view', 'mvc/ui/ui-tabl
return {
View: View
}
});
});
2 changes: 1 addition & 1 deletion static/maps/mvc/user/user-custom-builds.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions static/scripts/bundled/admin.bundled.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion static/scripts/bundled/admin.bundled.js.map

Large diffs are not rendered by default.

22 changes: 11 additions & 11 deletions static/scripts/bundled/analysis.bundled.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion static/scripts/bundled/analysis.bundled.js.map

Large diffs are not rendered by default.

30 changes: 15 additions & 15 deletions static/scripts/bundled/libs.bundled.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion static/scripts/bundled/libs.bundled.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion static/scripts/bundled/login.bundled.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit f3c593f

Please sign in to comment.