Merge branch 'master' into test
gitea/salix/test This commit looks good
Details
gitea/salix/test This commit looks good
Details
This commit is contained in:
commit
3c77f24462
|
@ -55,7 +55,7 @@ export default class InputNumber extends Textfield {
|
|||
if ((this.validate() !== undefined && !this.validate()) ||
|
||||
(this.max && this.value > this.max) ||
|
||||
(this.min && this.value < this.min) ||
|
||||
(this.step && this.value % this.step != 0))
|
||||
(this.displayControls && (this.step && this.value % this.step != 0)))
|
||||
this.$element[0].querySelector('.infix').classList.add('invalid', 'validated');
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue