mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-25 16:26:51 +08:00
Fix: Changed 'HightLightMarkdown' to 'HighLightMarkdown' (#11803)
### What problem does this PR solve? Fix: Changed 'HightLightMarkdown' to 'HighLightMarkdown', and replaced the private component with a public component. ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue)
This commit is contained in:
@ -1,5 +1,6 @@
|
||||
import api from '@/utils/api';
|
||||
import { registerNextServer } from '@/utils/register-server';
|
||||
import registerServer, { registerNextServer } from '@/utils/register-server';
|
||||
import request from '@/utils/request';
|
||||
|
||||
const {
|
||||
createSearch,
|
||||
@ -48,6 +49,8 @@ const methods = {
|
||||
method: 'get',
|
||||
},
|
||||
} as const;
|
||||
const searchService = registerNextServer<keyof typeof methods>(methods);
|
||||
const searchService = registerServer<keyof typeof methods>(methods, request);
|
||||
export const searchServiceNext =
|
||||
registerNextServer<keyof typeof methods>(methods);
|
||||
|
||||
export default searchService;
|
||||
|
||||
Reference in New Issue
Block a user