@dfosco/storyboard-core 2.7.0 → 2.7.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dfosco/storyboard-core",
3
- "version": "2.7.0",
3
+ "version": "2.7.1",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -90,7 +90,7 @@
90
90
  let expanded: Record<string, boolean> = $state(loadExpanded())
91
91
 
92
92
  function isExpanded(dirName: string): boolean {
93
- return expanded[dirName] ?? true
93
+ return expanded[dirName] ?? false
94
94
  }
95
95
 
96
96
  function toggle(dirName: string) {