added full diagram view modal

This commit is contained in:
2026-05-04 19:25:08 +02:00
parent a3860a8dae
commit 23d24d81b1
3 changed files with 235 additions and 132 deletions

View File

@@ -216,7 +216,7 @@ pub async fn report_details_handler(
}
async fn get_processed_reports() -> Result<Vec<ReportRow>, (StatusCode, String)> {
let response = reqwest::get("https://alatreon.org/slimes?limit=1000")
let response = reqwest::get("https://alatreon.org/slimes?limit=10000")
.await
.map_err(|e| (StatusCode::INTERNAL_SERVER_ERROR, e.to_string()))?;