fix: 🩹 convert numeric input to string
This commit is contained in:
parent
f50f8830a8
commit
074e633306
|
@ -186,7 +186,7 @@ let hCaptchaResponse = $ref(null);
|
||||||
let reCaptchaResponse = $ref(null);
|
let reCaptchaResponse = $ref(null);
|
||||||
|
|
||||||
const updateToken = (value: string) => {
|
const updateToken = (value: string) => {
|
||||||
token = value;
|
token = value.toString();
|
||||||
};
|
};
|
||||||
|
|
||||||
const meta = $computed(() => instance);
|
const meta = $computed(() => instance);
|
||||||
|
|
Loading…
Reference in New Issue