From 366678c965a96bd02ae93cf90ba7259d2ea09865 Mon Sep 17 00:00:00 2001 From: hide_d Date: Sat, 18 Sep 2021 02:49:47 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EC=9E=A5=EC=88=98=20=EC=83=9D=EC=84=B1?= =?UTF-8?q?=EC=B0=BD=20=EB=B3=B4=EC=9D=B4=EA=B8=B0/=EC=88=A8=EA=B8=B0?= =?UTF-8?q?=EA=B8=B0,=20=ED=84=B4=20=EC=8B=9C=EA=B0=84=20=EA=B3=A0?= =?UTF-8?q?=EC=A0=95=20=ED=91=9C=EA=B8=B0=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hwe/ts/Join.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/hwe/ts/Join.vue b/hwe/ts/Join.vue index f4719331..2086a7ae 100644 --- a/hwe/ts/Join.vue +++ b/hwe/ts/Join.vue @@ -149,7 +149,7 @@
@@ -458,21 +458,21 @@ export default defineComponent({ }, inheritTurnTimeMinute(newValue: number) { if (!this.inheritTurnTimeSet) { - this.args.inheritTurntime = 0; + this.args.inheritTurntime = undefined; return; } this.args.inheritTurntime = newValue * 60 + this.inheritTurnTimeSecond; }, inheritTurnTimeSecond(newValue: number) { if (!this.inheritTurnTimeSet) { - this.args.inheritTurntime = 0; + this.args.inheritTurntime = undefined; return; } this.args.inheritTurntime = this.inheritTurnTimeMinute * 60 + newValue; }, inheritTurnTimeSet(newValue: boolean) { if (!newValue) { - this.args.inheritTurntime = 0; + this.args.inheritTurntime = undefined; return; } this.args.inheritTurntime =