Commit 18df425f87680027d302a65a134672693fcce2e9
1 parent
2ff71aba
Exists in
master
and in
79 other branches
correcting filtering ihm lables
Showing
3 changed files
with
4 additions
and
4 deletions
Show diff stats
js/app/models/PlotObjects/PlotObjectConfig.js
... | ... | @@ -484,8 +484,8 @@ Ext.define('amdaPlotObj.PlotObjectConfig', { |
484 | 484 | ], |
485 | 485 | |
486 | 486 | availableFilteringLevel : [ |
487 | - {'key' : 1, 'value' : 'Low'}, | |
488 | - {'key' : 2, 'value' : 'Medium'}, | |
487 | + {'key' : 1, 'value' : 'Weak'}, | |
488 | + {'key' : 2, 'value' : 'Intermediate/moderated'}, | |
489 | 489 | {'key' : 3, 'value' : 'Strong'} |
490 | 490 | ], |
491 | 491 | |
... | ... |
js/app/views/PlotComponents/PlotBaseSerieForm.js
... | ... | @@ -105,7 +105,7 @@ Ext.define('amdaPlotComp.PlotBaseSerieForm', { |
105 | 105 | this.addStandardFieldSet('Symbols', 'serie-symbols-activated', this.addStandardSymbolsItems('serie-symbols')), |
106 | 106 | this.addStandardFieldSet('Time ticks', 'serie-timetick-activated', this.getTimeTickItems()), |
107 | 107 | this.addStandardFieldSet('Interval ticks', 'serie-intervaltick-activated', this.getIntervalTickItems()), |
108 | - this.addStandardFieldSet('Filtering', 'filtering-activated', this.getFilteringItems()) | |
108 | + this.addStandardFieldSet('Spike Filtering', 'filtering-activated', this.getFilteringItems()) | |
109 | 109 | ]; |
110 | 110 | } |
111 | 111 | }); |
... | ... |
js/app/views/PlotComponents/PlotSpectroForm.js
... | ... | @@ -49,7 +49,7 @@ Ext.define('amdaPlotComp.PlotSpectroForm', { |
49 | 49 | me.object.set('spectro-normalization', value); |
50 | 50 | } |
51 | 51 | }), |
52 | - this.addStandardFieldSet('Filtering', 'filtering-activated', this.getFilteringItems()) | |
52 | + this.addStandardFieldSet('Spike Filtering', 'filtering-activated', this.getFilteringItems()) | |
53 | 53 | ]; |
54 | 54 | } |
55 | 55 | }); |
... | ... |