Commit 3159959c752ef012522218947dc8ac469e8ecc60
1 parent
5ccafda0
Exists in
master
and in
29 other branches
Disbale in IHM inherits scale momentarily
Showing
1 changed file
with
5 additions
and
4 deletions
Show diff stats
js/app/views/PlotComponents/plotFunction/FunctionType.js
... | ... | @@ -60,7 +60,7 @@ Ext.define('amdaPlotComp.plotFunction.FunctionType', { |
60 | 60 | item_type = {}; |
61 | 61 | item_type[key_] = this.plotFunctionItems.type.values.dft; |
62 | 62 | item_type[name_] = this.plotFunctionItems.type.labels.dft; |
63 | - // Disbale DFT | |
63 | + // Disbale DFT momentarily | |
64 | 64 | //data_function_type.push(item_type); |
65 | 65 | |
66 | 66 | item_type = {}; |
... | ... | @@ -82,7 +82,8 @@ Ext.define('amdaPlotComp.plotFunction.FunctionType', { |
82 | 82 | const item_inherits = {}; |
83 | 83 | item_inherits[key_] = this.plotFunctionItems.scale.values.inherits; |
84 | 84 | item_inherits[name_] = this.plotFunctionItems.scale.values.inherits; |
85 | - data_.push(item_inherits); | |
85 | + // Disbale inherits momentarily | |
86 | + //data_.push(item_inherits); | |
86 | 87 | |
87 | 88 | const item_log = {}; |
88 | 89 | item_log[key_] = this.plotFunctionItems.scale.values.log; |
... | ... | @@ -156,7 +157,7 @@ Ext.define('amdaPlotComp.plotFunction.FunctionType', { |
156 | 157 | displayField: name_, |
157 | 158 | valueField: key_, |
158 | 159 | editable: false, |
159 | - value: this.plotFunctionItems.scale.values.inherits, | |
160 | + value: this.plotFunctionItems.scale.values.log, | |
160 | 161 | name: this.plotFunctionItems.scale.name |
161 | 162 | }, |
162 | 163 | { |
... | ... | @@ -179,7 +180,7 @@ Ext.define('amdaPlotComp.plotFunction.FunctionType', { |
179 | 180 | displayField: name_, |
180 | 181 | valueField: key_, |
181 | 182 | editable: false, |
182 | - value: this.plotFunctionItems.scale.values.inherits, | |
183 | + value: this.plotFunctionItems.scale.values.log, | |
183 | 184 | name: this.plotFunctionItems.scale_ordonnee.name |
184 | 185 | } |
185 | 186 | ] |
... | ... |