From 4ab749c136785075a8a82fa38f7bf4184241f640 Mon Sep 17 00:00:00 2001 From: "2569718930@qq.com" <2569718930@qq.com> Date: Thu, 14 May 2026 01:17:09 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B8=82=E5=9C=BA=E7=9B=91=E6=8E=A7=E6=96=B0?= =?UTF-8?q?=E5=A2=9E=2011=20=E4=B8=AA=E7=BE=8E=E5=9B=BD=E5=9F=8E=E5=B8=82?= =?UTF-8?q?=EF=BC=88NY/LA/Chicago/Denver=20=E7=AD=89=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/components/dashboard/monitoring/MonitorPanel.tsx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/frontend/components/dashboard/monitoring/MonitorPanel.tsx b/frontend/components/dashboard/monitoring/MonitorPanel.tsx index 15e4d6d5..ce60fd4d 100644 --- a/frontend/components/dashboard/monitoring/MonitorPanel.tsx +++ b/frontend/components/dashboard/monitoring/MonitorPanel.tsx @@ -7,6 +7,8 @@ import type { CityDetail } from "@/lib/dashboard-types"; const MONITOR_KEYS = [ "seoul", "busan", "tokyo", "ankara", "helsinki", "amsterdam", "istanbul", "paris", "hong kong", "lau fau shan", "taipei", + "new york", "los angeles", "chicago", "denver", "atlanta", + "miami", "san francisco", "houston", "dallas", "austin", "seattle", ] as const; type MonitorCity = { @@ -121,6 +123,10 @@ export default function MonitorPanel() { istanbul: "Airport", paris: "Le Bourget", "hong kong": "Observatory", "lau fau shan": "Lau Fau Shan", taipei: "Songshan", + "new york": "LaGuardia", "los angeles": "LAX", chicago: "O'Hare", + denver: "Buckley", atlanta: "Hartsfield", miami: "MIA", + "san francisco": "SFO", houston: "Hobby", dallas: "Love Field", + austin: "Bergstrom", seattle: "SeaTac", }; return m[key] || ""; };