diff --git a/scm-webapp/src/main/webapp/resources/js/repository/sonia.repository.repositorybrowser.js b/scm-webapp/src/main/webapp/resources/js/repository/sonia.repository.repositorybrowser.js index 5ca2e00502..9fa09d8e45 100644 --- a/scm-webapp/src/main/webapp/resources/js/repository/sonia.repository.repositorybrowser.js +++ b/scm-webapp/src/main/webapp/resources/js/repository/sonia.repository.repositorybrowser.js @@ -106,7 +106,17 @@ Sonia.repository.RepositoryBrowser = Ext.extend(Ext.grid.GridPanel, { }] }); + var bbar = [ + '->', + this.repository.name + ]; + + if ( this.revision != null ){ + bbar.push(': ', this.revision); + } + var config = { + bbar: bbar, autoExpandColumn: 'description', title: String.format(this.repositoryBrowserTitleText, this.repository.name), store: browserStore,