diff --git a/rust/src/components/inventory.rs b/rust/src/components/inventory.rs index 9de4485..8eeeb93 100644 --- a/rust/src/components/inventory.rs +++ b/rust/src/components/inventory.rs @@ -196,7 +196,6 @@ impl InventoryItemList { "border", "w-full", ]> - "Name" @@ -205,9 +204,19 @@ impl InventoryItemList { {items.iter().map(|item| html!( - - + + + {text!(item.name.clone())} + + + + {text!(item.weight.to_string())} ))}