Merge pull request #125 from SkywalkerJi/dev

Ignore the database to avoid submitting sensitive data.
This commit is contained in:
tinkle-community
2025-10-31 18:40:17 +08:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

1
.gitignore vendored
View File

@@ -26,6 +26,7 @@ Thumbs.db
# 环境变量 # 环境变量
.env .env
config.json config.json
config.db
# 决策日志 # 决策日志
decision_logs/ decision_logs/

View File

@@ -758,8 +758,7 @@ function CreateTraderModal({
type="number" type="number"
value={initialBalance} value={initialBalance}
onChange={(e) => setInitialBalance(Number(e.target.value))} onChange={(e) => setInitialBalance(Number(e.target.value))}
min="100" min="50"
max="100000"
className="w-full px-3 py-2 rounded" className="w-full px-3 py-2 rounded"
style={{ background: '#0B0E11', border: '1px solid #2B3139', color: '#EAECEF' }} style={{ background: '#0B0E11', border: '1px solid #2B3139', color: '#EAECEF' }}
required required