Commit b6dff325a92229b6f8686341789ee0d735934256

Authored by Elena.Budnik
1 parent 01295ae1

#6898 : stat info sur cat : index + 1

Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
js/app/views/StatisticalPlug.js
... ... @@ -104,9 +104,9 @@ Ext.define('amdaUI.StatisticalPlug', {
104 104 }
105 105  
106 106 // format min value
107   - me.min = me.format_unit(result.result.minDuration) + " (-- " + result.result.minDurationIndex + ")";
  107 + me.min = me.format_unit(result.result.minDuration) + " (-- " + (result.result.minDurationIndex+1) + ")";
108 108 // format max value
109   - me.max = me.format_unit(result.result.maxDuration) + " (-- " + result.result.maxDurationIndex + ")";
  109 + me.max = me.format_unit(result.result.maxDuration) + " (-- " + (result.result.maxDurationIndex+1) + ")";
110 110 // format mean value
111 111 me.mean = me.format_unit(result.result.mean);
112 112 // format Stdev value
... ...