Browse Source

fix: folder expanded update

Timothy Jaeryang Baek 2 weeks ago
parent
commit
91a9f32904
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/lib/components/layout/Sidebar/RecursiveFolder.svelte

+ 1 - 1
src/lib/components/layout/Sidebar/RecursiveFolder.svelte

@@ -339,7 +339,7 @@
 		}, 500);
 	};
 
-	$: if (open) {
+	$: if (open !== null) {
 		isExpandedUpdateDebounceHandler();
 	}