Commit 0b0c7bc6a990a0e876674c3530f0b1b5cd7c6cdb

Authored by Benjamin Renard
1 parent fd6c7cd1

Fix bug #6488

Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
js/app/views/PlotComponents/PlotTabPanel.js
... ... @@ -31,8 +31,8 @@ Ext.define('amdaPlotComp.PlotTabPanel', {
31 31  
32 32 setRequestObject: function(object)
33 33 {
34   - this.object = object;
35 34 this.removeAll();
  35 + this.object = object;
36 36 var selectedTab = this.object.get('active-tab-id');
37 37  
38 38 this.object.tabs().each(function (rec, index) {
... ... @@ -160,4 +160,4 @@ Ext.define('amdaPlotComp.PlotTabPanel', {
160 160  
161 161 Ext.apply (this , Ext.apply (arguments, myConf));
162 162 }
163   -});
164 163 \ No newline at end of file
  164 +});
... ...