[pdm-devel] [PATCH datacenter-manager] ui: dashboard: fix typo in icon

Dominik Csapak d.csapak at proxmox.com
Thu Aug 28 16:16:09 CEST 2025


'cubses' is not a valid FontAwesome icon, should be 'cubes'

Signed-off-by: Dominik Csapak <d.csapak at proxmox.com>
---
 ui/src/dashboard/mod.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ui/src/dashboard/mod.rs b/ui/src/dashboard/mod.rs
index 84efb1b..2478d66 100644
--- a/ui/src/dashboard/mod.rs
+++ b/ui/src/dashboard/mod.rs
@@ -159,7 +159,7 @@ impl PdmDashboard {
     fn create_guest_panel(&self, guest_type: GuestType, status: &GuestStatusCount) -> Panel {
         let (icon, title) = match guest_type {
             GuestType::Qemu => ("desktop", tr!("Virtual Machines")),
-            GuestType::Lxc => ("cubses", tr!("Linux Container")),
+            GuestType::Lxc => ("cubes", tr!("Linux Container")),
         };
         Panel::new()
             .flex(1.0)
-- 
2.47.2





More information about the pdm-devel mailing list