public inbox for pbs-devel@lists.proxmox.com
 help / color / mirror / Atom feed
* [pbs-devel] [PATCH proxmox-backup 1/2] ui: NavigationTree: do not modify list while iterating
@ 2021-03-10  9:10 Dominik Csapak
  2021-03-10  9:10 ` [pbs-devel] [PATCH proxmox-backup 2/2] ui: tape: increase tapestore interval Dominik Csapak
  2021-03-10 10:01 ` [pbs-devel] applied: [PATCH proxmox-backup 1/2] ui: NavigationTree: do not modify list while iterating Dietmar Maurer
  0 siblings, 2 replies; 8+ messages in thread
From: Dominik Csapak @ 2021-03-10  9:10 UTC (permalink / raw)
  To: pbs-devel

iterating over a nodeinterfaces children while removing them
will lead to 'child' being undefined

instead collect the children to remove in a separate list
and iterate over them

Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
---
 www/NavigationTree.js | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/www/NavigationTree.js b/www/NavigationTree.js
index a9e97567..4bdfbc66 100644
--- a/www/NavigationTree.js
+++ b/www/NavigationTree.js
@@ -188,11 +188,13 @@ Ext.define('PBS.view.main.NavigationTree', {
 		}
 	    }
 
+	    let toremove = [];
 	    list.eachChild((child) => {
 		if (!newSet[child.data.path]) {
-		    list.removeChild(child, true);
+		    toremove.push(child);
 		}
 	    });
+	    toremove.forEach((child) => list.removeChild(child, true));
 
 	    if (view.pathToSelect !== undefined) {
 		let path = view.pathToSelect;
-- 
2.20.1





^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2021-03-10 12:41 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-10  9:10 [pbs-devel] [PATCH proxmox-backup 1/2] ui: NavigationTree: do not modify list while iterating Dominik Csapak
2021-03-10  9:10 ` [pbs-devel] [PATCH proxmox-backup 2/2] ui: tape: increase tapestore interval Dominik Csapak
2021-03-10 11:19   ` Thomas Lamprecht
2021-03-10 11:38     ` Dominik Csapak
2021-03-10 11:47       ` Thomas Lamprecht
2021-03-10 12:32         ` Dominik Csapak
2021-03-10 12:41           ` Thomas Lamprecht
2021-03-10 10:01 ` [pbs-devel] applied: [PATCH proxmox-backup 1/2] ui: NavigationTree: do not modify list while iterating Dietmar Maurer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Service provided by Proxmox Server Solutions GmbH | Privacy | Legal