Skip to content

Commit

Permalink
fix: correctly swap Vec<_> in the DOM (closes #3321) (#3324)
Browse files Browse the repository at this point in the history
* fix: correctly swap `Vec<_>` in the DOM (closes #3321)

* [autofix.ci] apply automated fixes

---------

Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
  • Loading branch information
gbj and autofix-ci[bot] authored Dec 6, 2024
1 parent 8df4f3c commit be3c181
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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 be3c181

Please sign in to comment.