fix id of repository browser and diff viewer

This commit is contained in:
Sebastian Sdorra
2011-11-18 09:17:03 +01:00
parent 5cb52ff13a
commit 4262297d60

View File

@@ -140,7 +140,7 @@ Sonia.repository.ChangesetViewerGrid = Ext.extend(Ext.grid.GridPanel, {
openDiffViewer: function(revision){
main.addTab({
id: 'diff-' + this.repository.id + ':' + revision,
id: 'diffPanel|' + this.repository.id + '|' + revision,
xtype: 'diffPanel',
repository: this.repository,
revision: revision,
@@ -150,7 +150,7 @@ Sonia.repository.ChangesetViewerGrid = Ext.extend(Ext.grid.GridPanel, {
openRepositoryBrowser: function(revision){
main.addTab({
id: 'repositorybrowser-' + this.repository.id + ':' + revision,
id: 'repositoryBrowser|' + this.repository.id + '|' + revision,
xtype: 'repositoryBrowser',
repository: this.repository,
revision: revision,