We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06e736b commit c713027Copy full SHA for c713027
1 file changed
packages/yew/src/dom_bundle/blist.rs
@@ -422,7 +422,7 @@ impl Reconcilable for VList {
422
test_log!("lefts: {:?}", lefts);
423
test_log!("rights: {:?}", rights);
424
425
- if let Some(additional) = rights.len().checked_sub(lefts.len()) {
+ if let Some(additional) = lefts.len().checked_sub(rights.len()) {
426
rights.reserve_exact(additional);
427
}
428
let first = if self.fully_keyed && blist.fully_keyed {
0 commit comments