Timothy Jaeryang Baek hace 1 semana
padre
commit
4c2c58214c
Se han modificado 1 ficheros con 7 adiciones y 0 borrados
  1. 7 0
      src/lib/components/layout/Sidebar.svelte

+ 7 - 0
src/lib/components/layout/Sidebar.svelte

@@ -125,6 +125,13 @@
 				});
 			}
 		}
+
+		await tick();
+		for (const folderId in folders) {
+			if (folders[folderId] && folders[folderId].is_expanded) {
+				folderRegistry[folderId]?.setFolderItems();
+			}
+		}
 	};
 
 	const createFolder = async ({ name, data }) => {