Browse Source

do not accept non a number input

Konstantin Ladutenko 3 years ago
parent
commit
4c81e586e8
1 changed files with 9 additions and 2 deletions
  1. 9 2
      vue-cli3-webapp/src/components/InputWithUnits.vue

+ 9 - 2
vue-cli3-webapp/src/components/InputWithUnits.vue

@@ -49,7 +49,10 @@
               this.showValue = this.valueLocal;
               this.$emit('newdata',this.valueLocal);
             }, 500);
-            if (!this.expr_list.includes(this.expr)) this.expr_list.unshift(this.expr);
+            if (!this.expr_list.includes(this.expr)
+                && this.expr != ""
+                && !Number.isNaN(Number(math.evaluate(this.expr)))
+            ) this.expr_list.unshift(this.expr);
             if (this.expr_list.length > 5) this.expr_list.pop();
           }
         },
@@ -87,7 +90,11 @@
             },
           expr: {
             handler: function () {
-              this.valueLocal = math.evaluate(this.expr);
+              if (this.expr=="") return;
+              let result = math.evaluate(this.expr);
+              if (Number.isNaN(result)) return;
+              if (typeof result === 'object') return;
+              this.valueLocal = result;
             }
           },
             isDisabled: {