From 94fd1028558a2a6062fdab899c528e88f63f8c6c Mon Sep 17 00:00:00 2001 From: samlm Date: Thu, 20 Oct 2022 23:14:18 +0800 Subject: [PATCH] fix: IPv6 display logic fix --- ui/src/components/Information.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/src/components/Information.vue b/ui/src/components/Information.vue index f2109ac..ed6754d 100644 --- a/ui/src/components/Information.vue +++ b/ui/src/components/Information.vue @@ -9,7 +9,7 @@ {{ data.key }} {{ - data.value + data.value }} @@ -91,7 +91,7 @@ export default defineComponent({ }); } - if (data.public_ipv4) { + if (data.public_ipv6) { this.tableData.push({ key: "IPv6 地址", value: data.public_ipv6,