From 0ed6601a66133caa72cb0e0dd73a15a46c04b848 Mon Sep 17 00:00:00 2001 From: Sheen Capadngan Date: Tue, 9 Sep 2025 03:51:52 +0800 Subject: [PATCH] misc: added version indicator --- .../Gateways/GatewayListPage/GatewayListPage.tsx | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/frontend/src/pages/organization/Gateways/GatewayListPage/GatewayListPage.tsx b/frontend/src/pages/organization/Gateways/GatewayListPage/GatewayListPage.tsx index 4d21d93b3..729654d76 100644 --- a/frontend/src/pages/organization/Gateways/GatewayListPage/GatewayListPage.tsx +++ b/frontend/src/pages/organization/Gateways/GatewayListPage/GatewayListPage.tsx @@ -152,7 +152,14 @@ export const GatewayListPage = withPermission( )} {filteredGateway?.map((el) => ( - {el.name} + +
+ {el.name} + + Gateway v{el.isV1 ? "1" : "2"} + +
+ {el.identity.name} {el.heartbeat