From 300694ce961cef421e36ac68bc3c421f868c9cbb Mon Sep 17 00:00:00 2001 From: Caen De Silva Date: Sun, 26 Nov 2023 16:52:39 +0100 Subject: [PATCH] Specify group --- .../src/Framework/Features/Navigation/DocumentationSidebar.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/framework/src/Framework/Features/Navigation/DocumentationSidebar.php b/packages/framework/src/Framework/Features/Navigation/DocumentationSidebar.php index b1181cba85f..6cf239a9661 100644 --- a/packages/framework/src/Framework/Features/Navigation/DocumentationSidebar.php +++ b/packages/framework/src/Framework/Features/Navigation/DocumentationSidebar.php @@ -25,7 +25,7 @@ protected function generate(): void // If there are no pages other than the index page, we add it to the sidebar so that it's not empty if ($this->items->count() === 0 && DocumentationPage::home() !== null) { - $this->items->push(NavItem::fromRoute(DocumentationPage::home())); + $this->items->push(NavItem::fromRoute(DocumentationPage::home(), group: 'other')); } }