릴리스: v1.2.5 관리자 로컬 우측 패널 정리

This commit is contained in:
2026-03-30 15:44:23 +09:00
parent b5d5f4b079
commit 7886b98380
7 changed files with 399 additions and 153 deletions

View File

@@ -15,7 +15,7 @@ const rightRailOpen = ref(true)
const isAdmin = computed(() => !!auth.user?.isAdmin)
const isPreviewMode = computed(() => route.query.preview === '1')
const usesLocalRightRail = computed(() => ['editEditor', 'newEditor'].includes(String(route.name || '')))
const usesLocalRightRail = computed(() => ['editEditor', 'newEditor', 'admin'].includes(String(route.name || '')))
const avatarUrl = computed(() => (auth.user?.avatarSrc ? toApiUrl(auth.user.avatarSrc) : ''))
const accountName = computed(() => {
const nickname = (auth.user?.nickname || '').trim()