We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43e8d5e commit d90e366Copy full SHA for d90e366
packages/framework/src/Framework/Features/Navigation/DropdownNavItem.php
@@ -39,16 +39,4 @@ public function getItems(): Collection
39
{
40
return collect($this->items);
41
}
42
-
43
- private function searchForDropdownPriorityInNavigationConfig(string $groupKey): ?int
44
- {
45
- /** @var array<string, int> $config */
46
- $config = Config::getArray('hyde.navigation.order', [
47
- 'index' => 0,
48
- 'posts' => 10,
49
- 'docs/index' => 100,
50
- ]);
51
52
- return $config[$groupKey] ?? null;
53
- }
54
0 commit comments