mirror of
https://github.com/xoseperez/espurna.git
synced 2026-03-03 23:14:15 +01:00
per. https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Attributes/step implicit default is step="1" > If not explicitly included, step defaults to 1 for number and range, and 1 unit type (minute, week, month, day) for the date/time input types. > The value must be a positive number - integer or float — or the special value any, which means no stepping is implied and any value is allowed > (barring other constraints, such as min and max) > > Only values which are a whole number of steps from the step base are valid. .checkValidity()/.reportValidity() enforce the rule, making these values impossible to set (besides manually setting the kv through console) also clean-up any defaults & suspicious use in specific modules resolve #2651