Commit ed4de435fcfed15761c24b007a27a398df737ab3

Authored by Myriam Bouchemit
2 parents 25cb4f8d 2b73f0c5

Merge branch 'master' of https://gitlab.irap.omp.eu/CDPP/AMDA_IHM

help/downloadHOWTO
1 1 <li>1. To download a parameter / timeTable / catalog, <i>drag</i> it from the corresponding tree and <i>drop</i>
2   -onto the corresponding panel
  2 +onto the corresponding panel. Timestamp of the archive file is <i>UTC</i>
3 3 <li>2. To download data for the intervals from the TimeTable / Catalog activate the <i>TimeTable or Catalog mode</i> in the Time Selection area and
4 4 <i>drag-and-drop</i> there the TimeTable / Catalog from the corresponding tree
5 5 </br>
... ...
js/app/views/CatalogVisuHistogram.js
... ... @@ -60,8 +60,8 @@ Ext.define(&#39;amdaUI.CatalogVisuHistogram&#39;, {
60 60 maxValue = (maxValue == null) ? item.get(paramOpt.paramId) : Math.max(maxValue, item.get(paramOpt.paramId));
61 61 });
62 62  
63   - if (!minValue || !maxValue || (minValue == maxValue)) {
64   - myDesktopApp.errorMsg('Not enought data or constant data');
  63 + if ((minValue == null) || (maxValue == null) || (minValue == maxValue)) {
  64 + myDesktopApp.errorMsg('Not enough data or constant data');
65 65 return null;
66 66 }
67 67  
... ...