mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-07-19 22:21:04 +08:00
Refactor: Standardize naming convention to camelCase (#14079)
### What problem does this PR solve? Refactor: Standardize naming convention to camelCase ### Type of change - [x] Refactoring
This commit is contained in:
@@ -136,7 +136,7 @@ const FileLogsPage: FC = () => {
|
||||
const { data: topData } = useFetchOverviewTital();
|
||||
const {
|
||||
pagination: { total: fileTotal },
|
||||
} = useFetchDocumentList();
|
||||
} = useFetchDocumentList(false);
|
||||
|
||||
useEffect(() => {
|
||||
setTopAllData((prev) => {
|
||||
|
||||
@@ -139,7 +139,7 @@ export const useTestChunkRetrieval = (
|
||||
const shared_id = searchParams.get('shared_id');
|
||||
const retrievalTestFunc = shared_id
|
||||
? kbService.retrievalTestShare
|
||||
: kbService.retrieval_test;
|
||||
: kbService.retrievalTest;
|
||||
const {
|
||||
data,
|
||||
isPending: loading,
|
||||
@@ -190,7 +190,7 @@ export const useTestChunkAllRetrieval = (
|
||||
const shared_id = searchParams.get('shared_id');
|
||||
const retrievalTestFunc = shared_id
|
||||
? kbService.retrievalTestShare
|
||||
: kbService.retrieval_test;
|
||||
: kbService.retrievalTest;
|
||||
const {
|
||||
data,
|
||||
isPending: loading,
|
||||
|
||||
Reference in New Issue
Block a user