fix(web): follows/followers from newer to older
This commit is contained in:
parent
04ad3c84c2
commit
b6f4539424
1 changed files with 22 additions and 16 deletions
|
@ -32,7 +32,12 @@ pub fn FollowList(outgoing: bool) -> impl IntoView {
|
|||
{move || match resource.get() {
|
||||
None => view! { <Loader /> }.into_view(),
|
||||
Some(Err(e)) => view! { <p class="center">could not load {follow___}: {e}</p> }.into_view(),
|
||||
Some(Ok(arr)) => view! {
|
||||
Some(Ok(mut arr)) => {
|
||||
// TODO cheap fix: server gives us follows from oldest to newest
|
||||
// but it's way more convenient to have them other way around
|
||||
// so we reverse them just after loading them
|
||||
arr.reverse();
|
||||
view! {
|
||||
<For
|
||||
each=move || arr.clone()
|
||||
key=|id| id.clone()
|
||||
|
@ -47,7 +52,8 @@ pub fn FollowList(outgoing: bool) -> impl IntoView {
|
|||
}.into_view()
|
||||
}
|
||||
/ >
|
||||
}.into_view(),
|
||||
}.into_view()
|
||||
},
|
||||
}}
|
||||
</div>
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue