Compare commits

...

2 Commits
main ... 3321

Author SHA1 Message Date
autofix-ci[bot]
a398648b50 [autofix.ci] apply automated fixes 2024-12-05 00:41:56 +00:00
Greg Johnston
eef1f2e89d fix: correctly swap Vec<_> in the DOM (closes #3321) 2024-12-04 19:31:46 -05:00
2 changed files with 2 additions and 2 deletions

2
Cargo.lock generated
View File

@@ -918,7 +918,7 @@ checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
[[package]]
name = "either_of"
version = "0.1.0"
version = "0.1.1"
dependencies = [
"pin-project-lite",
]

View File

@@ -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)
}
}
}