We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 085d76f commit 65a1b99Copy full SHA for 65a1b99
js/header_dialog.js
@@ -159,7 +159,7 @@ function HeaderDialog(dialog, onSave) {
159
switch (i) {
160
case 0:
161
if(data[i]!=null) {
162
- $(this).val((data[i]/10.0).toFixed(1));
+ $(this).val((data[i]).toFixed(0));
163
$(this).attr('decPl', 1);
164
$(this).removeClass('missing');
165
} else {
@@ -169,7 +169,7 @@ function HeaderDialog(dialog, onSave) {
169
break;
170
case 1:
171
172
- $(this).val((data[i]/1000.0).toFixed(3));
173
$(this).attr('decPl', 3);
174
175
0 commit comments