fix(web): ignore filters for search results

This commit is contained in:
əlemi 2024-08-11 15:30:46 +02:00
parent c7139fa39e
commit 0efe1a3301
Signed by: alemi
GPG key ID: A4895B84D311642C

View file

@ -103,11 +103,7 @@ pub fn SearchPage() -> impl IntoView {
key=|id| id.clone() key=|id| id.clone()
children=move |item| { children=move |item| {
cache::OBJECTS.get(&item) cache::OBJECTS.get(&item)
.map(|x| view! { .map(|x| view! { <Item item=x always=true /> }.into_view())
<Item item=x />
<hr />
}.into_view()
)
} }
/ > / >
}.into_view()) }.into_view())