chore: Update Sycamore to 0.9.1 (#91)
All checks were successful
/ test (push) Successful in 2m31s

Co-authored-by: Aaron Fenyes <aaron.fenyes@fareycircles.ooo>
Reviewed-on: #91
Co-authored-by: Vectornaut <vectornaut@nobody@nowhere.net>
Co-committed-by: Vectornaut <vectornaut@nobody@nowhere.net>
This commit is contained in:
Vectornaut 2025-06-26 22:11:02 +00:00 committed by Glen Whitney
parent e447e7ea96
commit 4cb3262555
3 changed files with 16 additions and 15 deletions

View file

@ -151,7 +151,7 @@ fn ElementOutlineItem(element: Rc<dyn Element>) -> View {
.clone()
.into_iter()
.sorted_by_key(|reg| reg.subjects().len())
.collect()
.collect::<Vec<_>>()
);
let details_node = create_node_ref();
view! {
@ -241,7 +241,7 @@ pub fn Outline() -> View {
.clone()
.into_iter()
.sorted_by_key(|elt| elt.id().clone())
.collect()
.collect::<Vec<_>>()
);
view! {