릴리스: v0.1.36 제목 기본값과 브라우저 타이틀 조정

This commit is contained in:
2026-03-26 17:44:44 +09:00
parent e0c2995518
commit c413371935
5 changed files with 12 additions and 4 deletions

View File

@@ -51,7 +51,7 @@ const dropSortables = ref([])
const isNewTierList = computed(() => tierListId.value === 'new')
const canEdit = computed(() => !!auth.user && (!ownerId.value || ownerId.value === auth.user.id))
const iconSizeOptions = [48, 60, 80, 100, 120]
const iconSizeOptions = [48, 64, 80, 96, 112]
const hasCustomTitle = computed(() => !!(title.value || '').trim())
const fallbackTimestamp = computed(() => (updatedAt.value ? updatedAt.value : Date.now()))
const effectiveAuthorName = computed(() => {
@@ -65,7 +65,7 @@ const effectiveAuthorName = computed(() => {
const effectiveTitle = computed(() => {
const customTitle = (title.value || '').trim()
if (customTitle) return customTitle
return `이름 없음 ${formatTitleDate(fallbackTimestamp.value)}`
return (gameName.value || gameId.value || 'Tier Maker').trim()
})
const untitledWarning = computed(
() =>