Skip to content

Commit

Permalink
Fix list view title
Browse files Browse the repository at this point in the history
  • Loading branch information
guerler committed Oct 21, 2016
1 parent 4a0e601 commit 3776434
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion client/galaxy/scripts/mvc/ui/ui-thumbnails.js
Expand Up @@ -52,7 +52,7 @@ define( [ 'utils/utils', 'mvc/ui/ui-misc', 'mvc/ui/ui-tabs' ], function( Utils,
this.collection.each( function( model ) {
$el.append( self._templateRegularItem( model.attributes ) );
});
this.tabs.add( { id: Utils.uid(), title: 'List of available visualizations', $el: $el } );
this.tabs.add( { id: Utils.uid(), title: self.model.get( 'title_list' ), $el: $el } );
}
},

Expand Down
Expand Up @@ -37,7 +37,7 @@ define( [ 'mvc/ui/ui-tabs', 'mvc/ui/ui-misc', 'mvc/ui/ui-portlet', 'mvc/ui/ui-th
// grid with chart types
this.types = new Thumbnails.View({
title_default : 'Suggested visualizations',
title_others : 'List of available visualizations',
title_list : 'List of available visualizations',
items : _.map( this.app.types, function( type, type_id ) {
return {
id : type_id,
Expand Down
2 changes: 1 addition & 1 deletion static/maps/mvc/ui/ui-thumbnails.js.map

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

2 changes: 1 addition & 1 deletion static/scripts/mvc/ui/ui-thumbnails.js

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

0 comments on commit 3776434

Please sign in to comment.