Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/docs/reference/cli/_category_.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
position: 4
label: CLI Reference
collapsible: true
collapsed: true
collapsible: false
collapsed: false
2 changes: 1 addition & 1 deletion docs/docs/reference/project-files/_category_.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
position: 00
label: Project Files
collapsible: true
collapsible: false
collapsed: false
37 changes: 24 additions & 13 deletions docs/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -130,29 +130,40 @@ const config = {
to: "/",
label: "Docs",
position: "left",
className: "navbar-docs-link",
activeBaseRegex: "^(?!/(reference|api|contact|notes)).*", // Keep Docs active for all doc pages
},
{
to: "/reference/project-files",
type: "dropdown",
label: "Reference",
position: "left",
className: "navbar-reference-link",
activeBasePath: "/reference",
},
{
to: "/api/admin/",
label: "API",
position: "left",
className: "navbar-api-link",
activeBasePath: "/api/admin",
to: "/reference/project-files",
className: 'my-custom-dropdown',
activeBaseRegex: "^(/reference|/api/admin)",
items: [
{
to: "/reference/project-files",
label: "Project Files",
},
{
to: "/reference/cli",
label: "CLI",
},
{
to: "/reference/rill-iso-extensions",
label: "Rill ISO 8601",
},
{
to: "/api/admin/",
label: "REST API",
},

],
},
{
to: "/contact",
label: "Contact Us",
position: "left",
className: "navbar-contact-link",
activeBasePath: "/contact",
activeBaseRegex: "^/contact",
},


Expand Down
Loading
Loading