From 9e103baf946388c8f1bb54c8222767f912f7313a Mon Sep 17 00:00:00 2001 From: ssongliu <73214554+ssongliu@users.noreply.github.com> Date: Thu, 4 Jul 2024 17:54:32 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=A7=A3=E5=86=B3=E6=A6=82=E8=A7=88?= =?UTF-8?q?=E9=A1=B5=E7=A3=81=E7=9B=98=E6=8C=82=E8=BD=BD=E7=82=B9=E8=B7=AF?= =?UTF-8?q?=E5=BE=84=E5=B8=A6=E7=A9=BA=E6=A0=BC=E6=97=A0=E6=B3=95=E6=AD=A3?= =?UTF-8?q?=E5=B8=B8=E6=98=BE=E7=A4=BA=E7=9A=84=E9=97=AE=E9=A2=98=20(#5678?= =?UTF-8?q?)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/app/service/dashboard.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/app/service/dashboard.go b/backend/app/service/dashboard.go index 419d9753b..0ac4af844 100644 --- a/backend/app/service/dashboard.go +++ b/backend/app/service/dashboard.go @@ -253,7 +253,7 @@ func loadDiskInfo() []dto.DiskInfo { if isExclude { continue } - mounts = append(mounts, diskInfo{Type: fields[1], Device: fields[0], Mount: fields[6]}) + mounts = append(mounts, diskInfo{Type: fields[1], Device: fields[0], Mount: strings.Join(fields[6:], " ")}) } var (