From b095fb900552d6aa0d29d08d42556767a6a2ad2e Mon Sep 17 00:00:00 2001 From: Massimo Branchini <45419961+max72bra@users.noreply.github.com> Date: Fri, 17 Oct 2025 14:37:18 +0200 Subject: [PATCH] small fix: initial space does not allow correct alignment (#477) --- Services/NetworkManagerService.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Services/NetworkManagerService.qml b/Services/NetworkManagerService.qml index 5e61dc14..786e5bea 100644 --- a/Services/NetworkManagerService.qml +++ b/Services/NetworkManagerService.qml @@ -479,7 +479,7 @@ Singleton { details += "IPv4 informations:\\n" for (const ip4 of info.IPv4s.ips) { - details += " IPv4 address: " + ip4 + "\\n" + details += " IPv4 address: " + ip4 + "\\n" } details += " Gateway: " + info.IPv4s.gateway + "\\n" details += " DNS: " + info.IPv4s.dns + "\\n" @@ -488,7 +488,7 @@ Singleton { details += "\\nIPv6 informations:\\n" for (const ip6 of info.IPv6s.ips) { - details += " IPv6 address: " + ip6 + "\\n" + details += " IPv6 address: " + ip6 + "\\n" } if (info.IPv6s.gateway.length > 0) { details += " Gateway: " + info.IPv6s.gateway + "\\n"