From d3c0839a315490a230a901d3190bd1ded45b9c60 Mon Sep 17 00:00:00 2001 From: marco370 <48531002-marco370@users.noreply.replit.com> Date: Tue, 25 Nov 2025 10:25:39 +0000 Subject: [PATCH] Increase detection limits and fix navigation to details Update the default limit for retrieving detections to 5000 and adjust the "Details" link to navigate to the root page with the IP as a query parameter. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 7a657272-55ba-4a79-9a2e-f1ed9bc7a528 Replit-Commit-Checkpoint-Type: intermediate_checkpoint Replit-Commit-Event-Id: fada4cc1-cc41-4254-999e-dd6c2d2a66dc Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/449cf7c4-c97a-45ae-8234-e5c5b8d6a84f/7a657272-55ba-4a79-9a2e-f1ed9bc7a528/1zhedLT --- .replit | 4 ++++ client/src/pages/Detections.tsx | 4 ++-- server/storage.ts | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.replit b/.replit index 3dc4618..a6d8b5f 100644 --- a/.replit +++ b/.replit @@ -14,6 +14,10 @@ run = ["npm", "run", "start"] localPort = 5000 externalPort = 80 +[[ports]] +localPort = 36213 +externalPort = 3001 + [[ports]] localPort = 41303 externalPort = 3002 diff --git a/client/src/pages/Detections.tsx b/client/src/pages/Detections.tsx index e945bc5..870f562 100644 --- a/client/src/pages/Detections.tsx +++ b/client/src/pages/Detections.tsx @@ -22,7 +22,7 @@ export default function Detections() { // Build query params const queryParams = new URLSearchParams(); - queryParams.set("limit", "500"); + queryParams.set("limit", "5000"); if (anomalyTypeFilter !== "all") { queryParams.set("anomalyType", anomalyTypeFilter); } @@ -292,7 +292,7 @@ export default function Detections() {