Skip to content

Commit

Permalink
fix: 🐛 fixed collapsing not working
Browse files Browse the repository at this point in the history
  • Loading branch information
miggi92 authored Apr 24, 2024
1 parent a287bde commit f30f343
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions docs/.vitepress/config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ function sidebarDocumentation() {
return [
{
text: "Documentation",
collapsible: true,
collapsed: false,
items: [
{ text: 'Creating a service', link: '/documentation/Creating-a-service' },
{ text: 'DPC boilerplate code', link: '/documentation/DPC-boilerplate-code' }
Expand All @@ -96,10 +96,12 @@ function sidebarDocumentation() {
{
text: 'Development Objects',
link: '/documentation/dev-objects/',
collapsible: true,
collapsed: true,
items: [
{ text: 'Documentation', link: '/documentation/dev-objects/' }, {
text: 'Classes', link: '/documentation/dev-objects/classes/', items: [
text: 'Classes', link: '/documentation/dev-objects/classes/',
collapsed: true,
items: [
{ text: 'ZCL_ODATA_DATA_PROVIDER', link: '/documentation/dev-objects/classes/ZCL_ODATA_DATA_PROVIDER' },
{ text: 'ZCL_ODATA_DOCUMENTS', link: '/documentation/dev-objects/classes/ZCL_ODATA_DOCUMENTS' },
{ text: 'ZCL_ODATA_FW_CONTROLLER', link: '/documentation/dev-objects/classes/ZCL_ODATA_FW_CONTROLLER' },
Expand All @@ -110,14 +112,15 @@ function sidebarDocumentation() {
{ text: 'ZCL_ODATA_UTILS', link: '/documentation/dev-objects/classes/ZCL_ODATA_UTILS' },
{ text: 'ZCL_ODATA_VALUE_HELP', link: '/documentation/dev-objects/classes/ZCL_ODATA_VALUE_HELP' },
{
text: 'Annotations', link: '/documentation/dev-objects/classes/annotations/', items: [
text: 'Annotations', link: '/documentation/dev-objects/classes/annotations/', collapsed: true,
items: [
{ text: 'ZCL_ODATA_ANNOTATION_COMMON', link: '/documentation/dev-objects/classes/annotations/ZCL_ODATA_ANNOTATION_COMMON' },
{ text: 'ZCL_ODATA_ANNOTATION_SHLP', link: '/documentation/dev-objects/classes/annotations/ZCL_ODATA_ANNOTATION_SHLP' },
]
},
]
}, {
text: 'DDIC objects', link: '/documentation/dev-objects/ddic/', collapsible: true
text: 'DDIC objects', link: '/documentation/dev-objects/ddic/', collapsed: true
},
{
text: 'SAP objects', link: '/documentation/dev-objects/sap-objects/'
Expand Down

0 comments on commit f30f343

Please sign in to comment.