릴리스: v1.4.36 프리뷰 레일과 복사 흐름 정리

This commit is contained in:
2026-04-03 01:09:20 +09:00
parent 5eb08e1757
commit 2107223634
5 changed files with 70 additions and 2 deletions

View File

@@ -114,7 +114,7 @@ const untitledWarning = computed(
'제목 없이 저장된 티어표는 무분별한 도배 방지를 위해 관리자에 의해 임의 삭제될 수 있어요.'
)
const canFavorite = computed(() => !!auth.user && !isNewTierList.value && !canEdit.value)
const canDuplicate = computed(() => !!auth.user && !isNewTierList.value && !canEdit.value)
const canDuplicate = computed(() => !!auth.user && hasSavedTierList.value)
const copiedFromLabel = computed(() => {
if (!sourceTierListId.value) return ''
const parts = []