Error: 422 Unprocessable Entity when limit > 100 Root cause: Backend enforced max=100, frontend allowed any value Backend fix: - Increased preview limit from 100 to 500 (consistent with execute) - import_wiki.py line 64: le=100 → le=500 Frontend fix: - Added Math.min/max validation to both limit inputs - Preview limit: max 500 with auto-clamp - Execute limit: max 500 with auto-clamp - Updated placeholder: 'Kein Limit (max 500)' Prevents 422 errors from invalid limit values |
||
|---|---|---|
| .. | ||
| auth.py | ||
| catalogs.py | ||
| clubs.py | ||
| exercises.py | ||
| import_wiki.py | ||
| profiles.py | ||
| skills.py | ||
| training_planning.py | ||