콘텐츠 업로드 - 미리듣기 최소 시간 30초에서 15초로 변경 #27

Merged
klaus merged 1 commits from test into main 2024-09-25 11:17:16 +00:00
1 changed files with 4 additions and 4 deletions
Showing only changes of commit 21cfd00c92 - Show all commits

View File

@ -454,7 +454,7 @@
label="가격"
required
/>
유료 콘텐츠 가격을 입력하면 해당 콘텐츠의 미리듣기 시간을 설정할 있습니다.<br>미리듣기 시간은 최소 30 이상 설정해야 합니다.
유료 콘텐츠 가격을 입력하면 해당 콘텐츠의 미리듣기 시간을 설정할 있습니다.<br>미리듣기 시간은 최소 15 이상 설정해야 합니다.
</v-col>
</v-row>
</v-card-text>
@ -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
}