mirror of
https://github.com/scm-manager/scm-manager.git
synced 2026-01-21 23:12:11 +01:00
added repository name and revision to the bottom of the repository browser
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user