This commit is contained in:
JMARyA 2025-05-28 15:43:50 +02:00
parent b3a96ed3e3
commit ca24591d9d
12 changed files with 177 additions and 105 deletions

View file

@ -16,7 +16,7 @@ pub fn ItemDetailPage(id: String) -> Element {
class: "flex flex-col h-screen",
header {
class: "p-4 bg-blue-500 text-white text-lg font-bold",
class: "p-4 text-white text-lg font-bold",
{item.name.as_str()}
}
div {
@ -79,9 +79,9 @@ pub fn ItemDetailPage(id: String) -> Element {
Route::SupplyPage {
item: item.uuid.clone(),
param: SupplyPageParam {
onlyVariants: None,
forcePrice: None,
forceOrigin: None
only_variants: None,
force_price: None,
force_origin: None
}
}
);