feat(Compare): 增加延迟对比功能

This commit is contained in:
2025-12-23 10:29:31 +08:00
parent 1c7837d50c
commit d5a44d2862
23 changed files with 1124 additions and 182 deletions

View File

@@ -50,7 +50,7 @@ export default function IpInput({ onTest, testing }: IpInputProps) {
setTarget(e.target.value)
setError('')
}}
placeholder={loading ? t('正在检测IP...', 'Detecting IP...') : t('输入IP或域名(如 8.8.8.8 或 google.com', 'Enter IP or domain (e.g., 8.8.8.8 or google.com)')}
placeholder={loading ? t('正在检测IP...', 'Detecting IP...') : t('输入IP或域名', 'Enter IP or domain')}
className={`ip-input ${error ? 'ip-input-error' : ''}`}
disabled={testing || loading}
/>