릴리스: 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

@@ -7,7 +7,7 @@
href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Crect width='64' height='64' rx='16' fill='%230b1220'/%3E%3Cpath d='M18 18h28v8H36v20h-8V26H18z' fill='%23f8fafc'/%3E%3C/svg%3E"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>frontend</title>
<title>Tier Maker</title>
</head>
<body>
<div id="app"></div>

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(
() =>