impl command menu and change theme colors
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 3m26s
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 3m26s
This commit is contained in:
@ -119,7 +119,7 @@ export function getDocContent(path?: string[]): DocsContentMetadata | undefined
|
||||
* @param limit the maximum number of results
|
||||
*/
|
||||
export function searchDocs(
|
||||
query: string,
|
||||
query?: string,
|
||||
limit?: number,
|
||||
): {
|
||||
title: string;
|
||||
@ -129,7 +129,7 @@ export function searchDocs(
|
||||
if (!limit) {
|
||||
limit = 5; // Default to 5 results
|
||||
}
|
||||
return fuseIndex.search(query, { limit }).map(result => {
|
||||
return fuseIndex.search(query || "", { limit }).map(result => {
|
||||
return {
|
||||
title: result.item.title,
|
||||
summary: result.item.summary,
|
||||
|
Reference in New Issue
Block a user