fix(web): ignore filters for search results
This commit is contained in:
parent
c7139fa39e
commit
0efe1a3301
1 changed files with 1 additions and 5 deletions
|
@ -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())
|
||||||
|
|
Loading…
Reference in a new issue