File tree Expand file tree Collapse file tree 2 files changed +86
-546
lines changed Expand file tree Collapse file tree 2 files changed +86
-546
lines changed Original file line number Diff line number Diff line change @@ -144,16 +144,14 @@ watch(isMobileMenuOpen, (isOpen) => {
144144 }
145145})
146146
147- // Collapsible sections state - start with API section expanded
147+ // Collapsible sections state - start with all sections expanded
148148const collapsedSections = ref <Set <string >>(new Set ())
149149
150- // Initialize sections as collapsed except for API section
150+ // Initialize all sections as expanded
151151onMounted (() => {
152152 if (navigationSections .value ) {
153- const allSectionTitles = navigationSections .value .map (section => section .title )
154- // Start with all sections collapsed except 'API'
155- const sectionsToCollapse = allSectionTitles .filter (title => title !== ' API' )
156- collapsedSections .value = new Set (sectionsToCollapse )
153+ // Start with all sections expanded (empty set means all open)
154+ collapsedSections .value = new Set ()
157155 }
158156})
159157
You can’t perform that action at this time.
0 commit comments