소스 수정

This commit is contained in:
2025-12-28 16:05:58 +09:00
parent c79b73fba0
commit a29055d181
2 changed files with 358 additions and 68 deletions

View File

@@ -163,10 +163,10 @@ async function getServerDashboard() {
// 서버 목록
const servers = await query(`
SELECT target_id, name as server_name, is_active
SELECT target_id, server_name, is_active
FROM server_targets
WHERE is_active = 1
ORDER BY name
ORDER BY server_name
`)
const serverStatuses: any[] = []