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()
|
||||
children=move |item| {
|
||||
cache::OBJECTS.get(&item)
|
||||
.map(|x| view! {
|
||||
<Item item=x />
|
||||
<hr />
|
||||
}.into_view()
|
||||
)
|
||||
.map(|x| view! { <Item item=x always=true /> }.into_view())
|
||||
}
|
||||
/ >
|
||||
}.into_view())
|
||||
|
|
Loading…
Reference in a new issue