[PR #3445] [CLOSED] Insight 28 thought 컴포넌트에 글 잘리는 버그 수정 #4281

Closed
opened 2026-02-22 18:35:31 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/3445
Author: @jhchoi-dev
Created: 3/12/2025
Status: Closed

Base: masterHead: INSIGHT-28-Thought-컴포넌트에-글-잘리는-버그-수정


📝 Commits (10+)

  • 1f5ea20 Update .gitmodules
  • 1958492 Update .gitmodules
  • be2e7e1 INSIGHT-6 AnythingLLM 코드 분석 및 포팅 #comment ocr js 포팅 완료
  • f8c3389 INSIGHT-6 AnythingLLM 코드 분석 및 포팅 #comment Dockerfile에 누락된 부분 추가.
  • 4b7425a INSIGHT-10 OCR 처리 병렬화 #comment 최대 5개의 OCR 요청을 동시에 처리하도록 변경.
  • 6ae86c9 INSIGHT-10 OCR 처리 병렬화 및 서버 HTTP Timeout 시간 조정 #comment http timeout 시간 .env 파일에서 설정 가능하도록 변경.
  • 1b44a1a mvp용 docker-compose yml 파일 업로드
  • ccca175 INSIGHT-10 OCR 처리 병렬화 및 서버 HTTP Timeout 시간 조정 #comment .env 의 REQUEST_TIMEOUT 값이 int 로 처리되도록 수정.
  • 8658e52 INSIGHT-14 OCR 결과 json 파일 이름에 한글 안들어가는 문제 #comment slugify에 remove 옵션 추가.
  • 90cc7a0 INSIGHT-15 Text Layer가 없는 페이지만 OCR 진행 #comment Text Layer가 없는 PDF 페이지만 OCR 진행

📊 Changes

112 files changed (+2274 additions, -1128 deletions)

View changed files

📝 .gitignore (+2 -0)
📝 .gitmodules (+2 -2)
📝 collector/package.json (+4 -1)
📝 collector/processSingleFile/convert/asPDF/PDFLoader/index.js (+103 -40)
collector/processSingleFile/convert/asPDF/PDFLoader/pdf-ocr-loader.js (+333 -0)
📝 collector/processSingleFile/convert/asPDF/index.js (+3 -1)
📝 docker/.env.example (+7 -1)
📝 docker/Dockerfile (+3 -1)
📝 docker/docker-compose.yml (+26 -2)
docker/docker-compose_mvp.yml (+24 -0)
docker/pg_hba.conf (+2 -0)
docker/postgresql.conf (+1 -0)
📝 frontend/src/components/DefaultChat/index.jsx (+95 -96)
📝 frontend/src/components/Modals/ManageWorkspace/Documents/Directory/NewFolderModal/index.jsx (+7 -5)
📝 frontend/src/components/Modals/ManageWorkspace/Documents/WorkspaceDirectory/WorkspaceFileRow/index.jsx (+5 -2)
📝 frontend/src/components/Modals/NewWorkspace.jsx (+1 -1)
📝 frontend/src/components/SettingsButton/index.jsx (+4 -2)
📝 frontend/src/components/SettingsSidebar/MenuOption/index.jsx (+2 -2)
📝 frontend/src/components/SettingsSidebar/index.jsx (+8 -8)
📝 frontend/src/components/Sidebar/ActiveWorkspaces/ThreadContainer/ThreadItem/index.jsx (+9 -6)

...and 80 more files

📄 Description

  • ThoughtContainer에 스크롤 바 추가
  • theme="light" 일 때 white-scrollbar css 정의

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/Mintplex-Labs/anything-llm/pull/3445 **Author:** [@jhchoi-dev](https://github.com/jhchoi-dev) **Created:** 3/12/2025 **Status:** ❌ Closed **Base:** `master` ← **Head:** `INSIGHT-28-Thought-컴포넌트에-글-잘리는-버그-수정` --- ### 📝 Commits (10+) - [`1f5ea20`](https://github.com/Mintplex-Labs/anything-llm/commit/1f5ea20fbc102bfd24e2f72b3917dd3388c74521) Update .gitmodules - [`1958492`](https://github.com/Mintplex-Labs/anything-llm/commit/19584923f268bc318fa96baef9b6a34bbc1039a6) Update .gitmodules - [`be2e7e1`](https://github.com/Mintplex-Labs/anything-llm/commit/be2e7e13dc053c79e91de4ab03192182197e9f40) INSIGHT-6 AnythingLLM 코드 분석 및 포팅 #comment ocr js 포팅 완료 - [`f8c3389`](https://github.com/Mintplex-Labs/anything-llm/commit/f8c3389dfff66ed861c1335c46a35b93a4070084) INSIGHT-6 AnythingLLM 코드 분석 및 포팅 #comment Dockerfile에 누락된 부분 추가. - [`4b7425a`](https://github.com/Mintplex-Labs/anything-llm/commit/4b7425a3729cb67bb09455300934e3772d10207c) INSIGHT-10 OCR 처리 병렬화 #comment 최대 5개의 OCR 요청을 동시에 처리하도록 변경. - [`6ae86c9`](https://github.com/Mintplex-Labs/anything-llm/commit/6ae86c9148670717a63164fda46f099aa6d45617) INSIGHT-10 OCR 처리 병렬화 및 서버 HTTP Timeout 시간 조정 #comment http timeout 시간 .env 파일에서 설정 가능하도록 변경. - [`1b44a1a`](https://github.com/Mintplex-Labs/anything-llm/commit/1b44a1a7305e94300fb05a8fad284f84de6205d1) mvp용 docker-compose yml 파일 업로드 - [`ccca175`](https://github.com/Mintplex-Labs/anything-llm/commit/ccca1753130764ec1f0b68233a16c92f53d8ecde) INSIGHT-10 OCR 처리 병렬화 및 서버 HTTP Timeout 시간 조정 #comment .env 의 REQUEST_TIMEOUT 값이 int 로 처리되도록 수정. - [`8658e52`](https://github.com/Mintplex-Labs/anything-llm/commit/8658e5282fd71516ac23a89d960d1f7807d939a4) INSIGHT-14 OCR 결과 json 파일 이름에 한글 안들어가는 문제 #comment slugify에 remove 옵션 추가. - [`90cc7a0`](https://github.com/Mintplex-Labs/anything-llm/commit/90cc7a0fb9f2fc7c52daf424b5dc3f5ce517afc2) INSIGHT-15 Text Layer가 없는 페이지만 OCR 진행 #comment Text Layer가 없는 PDF 페이지만 OCR 진행 ### 📊 Changes **112 files changed** (+2274 additions, -1128 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+2 -0) 📝 `.gitmodules` (+2 -2) 📝 `collector/package.json` (+4 -1) 📝 `collector/processSingleFile/convert/asPDF/PDFLoader/index.js` (+103 -40) ➕ `collector/processSingleFile/convert/asPDF/PDFLoader/pdf-ocr-loader.js` (+333 -0) 📝 `collector/processSingleFile/convert/asPDF/index.js` (+3 -1) 📝 `docker/.env.example` (+7 -1) 📝 `docker/Dockerfile` (+3 -1) 📝 `docker/docker-compose.yml` (+26 -2) ➕ `docker/docker-compose_mvp.yml` (+24 -0) ➕ `docker/pg_hba.conf` (+2 -0) ➕ `docker/postgresql.conf` (+1 -0) 📝 `frontend/src/components/DefaultChat/index.jsx` (+95 -96) 📝 `frontend/src/components/Modals/ManageWorkspace/Documents/Directory/NewFolderModal/index.jsx` (+7 -5) 📝 `frontend/src/components/Modals/ManageWorkspace/Documents/WorkspaceDirectory/WorkspaceFileRow/index.jsx` (+5 -2) 📝 `frontend/src/components/Modals/NewWorkspace.jsx` (+1 -1) 📝 `frontend/src/components/SettingsButton/index.jsx` (+4 -2) 📝 `frontend/src/components/SettingsSidebar/MenuOption/index.jsx` (+2 -2) 📝 `frontend/src/components/SettingsSidebar/index.jsx` (+8 -8) 📝 `frontend/src/components/Sidebar/ActiveWorkspaces/ThreadContainer/ThreadItem/index.jsx` (+9 -6) _...and 80 more files_ </details> ### 📄 Description - ThoughtContainer에 스크롤 바 추가 - theme="light" 일 때 white-scrollbar css 정의 --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-22 18:35:31 -05:00
yindo closed this issue 2026-02-22 18:35:31 -05:00
yindo changed title from [PR #3445] Insight 28 thought 컴포넌트에 글 잘리는 버그 수정 to [PR #3445] [CLOSED] Insight 28 thought 컴포넌트에 글 잘리는 버그 수정 2026-06-05 15:17:46 -04:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: Mintplex-Labs/anything-llm#4281