Fix: pending_calibration shows Identify Version button instead of checkmark

Chronicler #85 direct fix (Code unavailable on mobile):
- ModpackAPIController: add pending_calibration flag to serverStatus response
- wrapper.tsx: add pending_calibration to StatusData interface
- wrapper.tsx: render Identify Version button when pending_calibration is true
Replaces false green checkmark for servers needing calibration.
This commit is contained in:
Claude
2026-04-13 11:57:52 +00:00
parent 75a59fe3c0
commit c0b6bc5a22
2 changed files with 26 additions and 0 deletions

View File

@@ -311,6 +311,7 @@ class ModpackAPIController extends Controller
return response()->json([
'configured' => !empty($cached->platform) && $cached->status !== 'unconfigured',
'pending_calibration' => $cached->status === 'pending_calibration',
'platform' => $cached->platform,
'modpack_name' => $cached->modpack_name,
'current_version' => $cached->current_version,