From 21cfd00c92f03bc56fd483a57bed799b05d30969 Mon Sep 17 00:00:00 2001 From: Yu Sung Date: Wed, 25 Sep 2024 20:10:11 +0900 Subject: [PATCH] =?UTF-8?q?=EC=BD=98=ED=85=90=EC=B8=A0=20=EC=97=85?= =?UTF-8?q?=EB=A1=9C=EB=93=9C=20-=20=EB=AF=B8=EB=A6=AC=EB=93=A3=EA=B8=B0?= =?UTF-8?q?=20=EC=B5=9C=EC=86=8C=20=EC=8B=9C=EA=B0=84=2030=EC=B4=88?= =?UTF-8?q?=EC=97=90=EC=84=9C=2015=EC=B4=88=EB=A1=9C=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/Content/ContentList.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/views/Content/ContentList.vue b/src/views/Content/ContentList.vue index 4abdc62..981c9e5 100644 --- a/src/views/Content/ContentList.vue +++ b/src/views/Content/ContentList.vue @@ -454,7 +454,7 @@ label="가격" required /> - ※ 유료 콘텐츠 가격을 입력하면 해당 콘텐츠의 미리듣기 시간을 설정할 수 있습니다.
미리듣기 시간은 최소 30초 이상 설정해야 합니다. + ※ 유료 콘텐츠 가격을 입력하면 해당 콘텐츠의 미리듣기 시간을 설정할 수 있습니다.
미리듣기 시간은 최소 15초 이상 설정해야 합니다. @@ -870,7 +870,7 @@ export default { !this.isValidTimeFormat(previewStartTime) || !this.isValidTimeFormat(previewEndTime) ) { - this.notifyError("미리 듣기 시간 형식은 00:30:00 과 같아야 합니다") + this.notifyError("미리 듣기 시간 형식은 00:00:15 과 같아야 합니다") this.is_loading = false return } @@ -882,8 +882,8 @@ export default { const totalSeconds2 = h2 * 3600 + m2 * 60 + s2; const timeDifference = totalSeconds2 - totalSeconds1; - if (timeDifference < 30) { - this.notifyError("미리 듣기의 최소 시간은 30초 입니다.") + if (timeDifference < 15) { + this.notifyError("미리 듣기의 최소 시간은 15초 입니다.") this.is_loading = false return }