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 d05280e commit 0127fc9Copy full SHA for 0127fc9
1 file changed
src/container/Base.mjs
@@ -525,10 +525,10 @@ class Base extends Component {
525
526
me.getVdomItemsRoot().cn.splice(index, 1);
527
528
- me[silent && !destroyItem ? '_vdom' : 'vdom'] = vdom;
+ me[silent || destroyItem ? '_vdom' : 'vdom'] = vdom;
529
530
if (destroyItem) {
531
- item.destroy(true);
+ item.destroy(false, true);
532
} else {
533
item.mounted = false;
534
}
0 commit comments