소스 검색

Fix: infinite loading not work when message is too short (#5075)

KVOJJJin 1 년 전
부모
커밋
5f104bab57
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      web/app/components/app/log/list.tsx

+ 1 - 1
web/app/components/app/log/list.tsx

@@ -185,7 +185,7 @@ function DetailPanel<T extends ChatConversationFullDetailResponse | CompletionCo
         return
         return
       const params: ChatMessagesRequest = {
       const params: ChatMessagesRequest = {
         conversation_id: detail.id,
         conversation_id: detail.id,
-        limit: 4,
+        limit: 10,
       }
       }
       if (items?.[0]?.id)
       if (items?.[0]?.id)
         params.first_id = items?.[0]?.id.replace('question-', '')
         params.first_id = items?.[0]?.id.replace('question-', '')