v0.1.50 - 인증 재전송 버튼 조건 보정

This commit is contained in:
2026-04-24 11:55:29 +09:00
parent 39a731138b
commit ec9a334035
4 changed files with 10 additions and 5 deletions

View File

@@ -11,6 +11,7 @@ import StatsDashboard from './components/StatsDashboard.vue'
import {
deleteAdminUser,
fetchAdminOverview,
fetchAdminUserDetail,
revokeAdminUserSessions,
updateAdminUserStatus,
} from './lib/adminApi'
@@ -114,6 +115,7 @@ const hiddenGuideTooltips = ref(readHiddenGuideTooltips())
const ddayDisabledDateKeys = ref(readDdayDisabledDateKeys())
const adminBusy = ref(false)
const adminActionUserId = ref(null)
const adminDetailBusy = ref(false)
const adminMessage = ref('')
const adminOverview = ref({
totalUsers: 0,
@@ -127,6 +129,8 @@ const adminOverview = ref({
})
const adminUsers = ref([])
const adminRecentLogins = ref([])
const adminSelectedUserId = ref(null)
const adminUserDetail = ref(null)
const hours = [
'6', '7', '8', '9', '10', '11', '12',
@@ -653,7 +657,7 @@ const showVerificationResend = computed(() => {
return false
}
return authMessage.value.includes('이메일 인증')
return authMessage.value.includes('이메일 인증을 완료한 뒤 로그인해 주세요.')
})
const filteredGoals = computed(() => {
const query = goalQuery.value.trim().toLowerCase()