From 5ab7ae10646f38937d9700a9b44470bcde228c60 Mon Sep 17 00:00:00 2001 From: nessi Date: Thu, 12 Feb 2026 11:01:49 +0100 Subject: [PATCH] Update TargetDetailPage to display target-specific port Replaced the instance port display with the target-specific port using `targetMeta?.port`. This ensures the displayed port aligns with the specific target's metadata. --- frontend/src/pages/TargetDetailPage.jsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/frontend/src/pages/TargetDetailPage.jsx b/frontend/src/pages/TargetDetailPage.jsx index 3ecc58d..d33df01 100644 --- a/frontend/src/pages/TargetDetailPage.jsx +++ b/frontend/src/pages/TargetDetailPage.jsx @@ -127,7 +127,10 @@ export function TargetDetailPage() { Uptime{formatSeconds(overview.instance.uptime_seconds)}
Database{overview.instance.current_database || "-"}
-
Port{overview.instance.port ?? "-"}
+
+ Target Port + {targetMeta?.port ?? "-"} +
Current DB Size{formatBytes(overview.storage.current_database_size_bytes)}