Commit e0648247f8f9c163668efda97976ccf23b38f002

Authored by Benjamin Renard
1 parent 6271e037

Set decimal precision to 20 for a float field in plot module

Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
js/app/views/PlotComponents/PlotStandardForm.js
... ... @@ -67,7 +67,7 @@ Ext.define('amdaPlotComp.PlotStandardForm', {
67 67 xtype: 'numberfield',
68 68 name: name,
69 69 fieldLabel: label,
70   - decimalPrecision : 3,
  70 + decimalPrecision : 20,
71 71 minValue : min,
72 72 maxValue : max,
73 73 allowBlank : allowBlank,
... ... @@ -368,4 +368,4 @@ Ext.define('amdaPlotComp.PlotStandardForm', {
368 368  
369 369 Ext.apply (this , Ext.apply (arguments, myConf));
370 370 }
371   -});
372 371 \ No newline at end of file
  372 +});
... ...