From 4f4f12579673d197d0c90bc7cab2df9686396837 Mon Sep 17 00:00:00 2001 From: Samuel Lorch Date: Sun, 14 Jan 2024 23:09:13 +0100 Subject: [PATCH] fix interface listing --- client/src/pages/network/interfaces.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/pages/network/interfaces.vue b/client/src/pages/network/interfaces.vue index 965c400..7305947 100644 --- a/client/src/pages/network/interfaces.vue +++ b/client/src/pages/network/interfaces.vue @@ -23,7 +23,7 @@ const displayData = $computed(() => { name: interfaces[index].name, type: interfaces[index].type, addressing_mode: interfaces[index].addressing_mode, - address: interfaces[nindexame].address, + address: interfaces[index].address, comment: interfaces[index].comment, }); }