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 e94a056 commit 03da153Copy full SHA for 03da153
src/components/QuestionTypes/NumberType.vue
@@ -21,6 +21,14 @@
21
22
methods: {
23
validate() {
24
+ if (!isNaN(this.question.min) && this.dataValue < this.question.min) {
25
+ return false
26
+ }
27
+
28
+ if (!isNaN(this.question.max) && this.dataValue > this.question.max) {
29
30
31
32
if (this.hasValue) {
33
if (this.question.mask) {
34
return this.validateMask()
0 commit comments