Add test for range step size for int (1) vs float (0.1) (#1776)

* Add test for range step size for int (1) vs float (0.1)

* Remove old default setting for integer

* fixed tests
This commit is contained in:
Jeffrey Warren
2020-12-05 12:34:49 -05:00
committed by GitHub
parent cbaa0f0f6f
commit 5a6d5560ff
3 changed files with 8 additions and 4 deletions

View File

@@ -136,7 +136,7 @@ function DefaultHtmlStepUi(_sequencer, options) {
'"max="' +
inputDesc.max +
'"step="' +
(inputDesc.step ? inputDesc.step : 1) + '">' + '<span>' + paramVal + '</span>';
inputDesc.step + '">' + '<span>' + paramVal + '</span>';
}
else html += '">';