Skip to content

Commit 332a131

Browse files
authored
Merge pull request #2033 from hydephp/rename-documentation-search-view
[2.x] Move documentation search Blade view to better match route structure
2 parents c5886eb + a87ac00 commit 332a131

File tree

3 files changed

+2
-1
lines changed

3 files changed

+2
-1
lines changed

RELEASE_NOTES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ This serves two purposes:
7373
- Improved how the `MarkdownService` class is accessed, by binding it into the service container, in https://github.com/hydephp/develop/pull/1922
7474
- Improved the media asset transfer build task to have better output in https://github.com/hydephp/develop/pull/1904
7575
- The full page documentation search now generates it's heading using smarter natural language processing based on the configured sidebar header in https://github.com/hydephp/develop/pull/2032
76+
- Moved Blade view `hyde::pages.documentation-search` to `hyde::pages.docs.search` in https://github.com/hydephp/develop/pull/2033
7677
- **Many MediaFile related helpers have been changed or completely rewritten** to provide a simplified API for interacting with media files.
7778
- **Note:** For most end users, the changes will have minimal direct impact, but if you have custom code that interacts with media files, you may need to update it.
7879
- The `Asset` facade has been restructured to be more scoped and easier to use, splitting out a separate `HydeFront` facade and inlining the `AssetService` class.

packages/framework/src/Framework/Features/Documentation/DocumentationSearchPage.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public function __construct()
2929
'title' => 'Search',
3030
'navigation' => ['hidden' => true],
3131
'article' => false,
32-
], view: 'hyde::pages.documentation-search');
32+
], view: 'hyde::pages.docs.search');
3333
}
3434

3535
public static function enabled(): bool

0 commit comments

Comments
 (0)