mirror of https://github.com/statping/statping
allow numeric input when using telegram
parent
57e594823a
commit
eb5589eeaf
|
@ -282,7 +282,7 @@ export default {
|
||||||
this.notifier.form.forEach((f) => {
|
this.notifier.form.forEach((f) => {
|
||||||
let field = f.field.toLowerCase()
|
let field = f.field.toLowerCase()
|
||||||
let val = this.notifier[field]
|
let val = this.notifier[field]
|
||||||
if (this.isNumeric(val)) {
|
if (this.isNumeric(val) && (this.form.method!='telegram' && field != 'var1')) {
|
||||||
val = parseInt(val)
|
val = parseInt(val)
|
||||||
}
|
}
|
||||||
this.form[field] = val
|
this.form[field] = val
|
||||||
|
@ -304,7 +304,7 @@ export default {
|
||||||
this.notifier.form.forEach((f) => {
|
this.notifier.form.forEach((f) => {
|
||||||
let field = f.field.toLowerCase()
|
let field = f.field.toLowerCase()
|
||||||
let val = this.notifier[field]
|
let val = this.notifier[field]
|
||||||
if (this.isNumeric(val)) {
|
if (this.isNumeric(val) && (this.form.method!='telegram' && field != 'var1')) {
|
||||||
val = parseInt(val)
|
val = parseInt(val)
|
||||||
}
|
}
|
||||||
this.form[field] = val
|
this.form[field] = val
|
||||||
|
|
Loading…
Reference in New Issue