Skip to content

Commit

Permalink
fix: correctly swap Vec<_> in the DOM (closes #3321)
Browse files Browse the repository at this point in the history
  • Loading branch information
gbj committed Dec 5, 2024
1 parent 8df4f3c commit eef1f2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tachys/src/view/iterators.rs
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ where
if let Some(first) = self.states.first() {
first.insert_before_this(child)
} else {
false
self.marker.insert_before_this(child)
}
}
}
Expand Down

0 comments on commit eef1f2e

Please sign in to comment.