From e0e59f466eada93c2eda7f30a4f1d08ee00ac363 Mon Sep 17 00:00:00 2001 From: X-20A <155217226+X-20A@users.noreply.github.com> Date: Sat, 8 Jun 2024 04:19:09 +0900 Subject: [PATCH] =?UTF-8?q?UI=E3=82=92=E5=A4=89=E6=9B=B4=20[update=20snaps?= =?UTF-8?q?hots]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Talk/AudioInfo.vue | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/components/Talk/AudioInfo.vue b/src/components/Talk/AudioInfo.vue index d7f69f135a..295868c69a 100644 --- a/src/components/Talk/AudioInfo.vue +++ b/src/components/Talk/AudioInfo.vue @@ -523,17 +523,6 @@ const parameters = computed(() => { }, plsParam, ]; - // switchPauseLengthModeの変更に伴って更新 - const newParam = switchPauseLengthMode.value === "SCALE" ? plsParam : plParam; - const index = baseParam.findIndex((param) => - param.label.includes("句読点などの無音時間"), - ); - - if (index !== -1) { - baseParam[index] = newParam; - } else { - baseParam.push(newParam); - } return baseParam; });