diff --git a/src/node/system.rs b/src/node/system.rs index b15f85f..415d99a 100644 --- a/src/node/system.rs +++ b/src/node/system.rs @@ -64,6 +64,7 @@ pub fn system_info() -> SystemInfo { let disks = sys .disks() .iter() + .filter(|disk| !disk.is_removable() && !disk.name().eq_ignore_ascii_case("overlay")) .map(|disk| DiskInfo { device_name: disk.name().to_str().unwrap_or_default().to_string(), mount_point: disk.mount_point().to_str().unwrap_or_default().to_string(), diff --git a/templates/container/get-one.html b/templates/container/get-one.html index 014d215..96aca98 100644 --- a/templates/container/get-one.html +++ b/templates/container/get-one.html @@ -126,6 +126,7 @@ padding: 4px 8px; margin: 0; background-color: #1a1c38; + word-break: break-all; &:nth-child(odd) { background-color: #212345;