From 459c108b130d4722432955a0f978743f182be46a Mon Sep 17 00:00:00 2001 From: Hide_D Date: Sun, 15 May 2022 16:52:23 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20form=20input=20value=EA=B0=80=20string?= =?UTF-8?q?=EC=9D=B4=20=EB=90=98=EC=96=B4=20number=20=EA=B2=80=EC=82=AC?= =?UTF-8?q?=EC=97=90=20=EC=8B=A4=ED=8C=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hwe/ts/PageInheritPoint.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hwe/ts/PageInheritPoint.vue b/hwe/ts/PageInheritPoint.vue index a0086396..ec553105 100644 --- a/hwe/ts/PageInheritPoint.vue +++ b/hwe/ts/PageInheritPoint.vue @@ -413,7 +413,7 @@ export default defineComponent({ }, methods: { async buyInheritBuff(buffKey: inheritBuffType) { - const level = this.inheritBuff[buffKey]; + const level = Math.floor(this.inheritBuff[buffKey]); const prevLevel = this.prevInheritBuff[buffKey] ?? 0; if (level == prevLevel) { return;