[PR #284] [MERGED] Fix/header nav load more app #22414

Closed
opened 2026-02-21 20:18:54 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/langgenius/dify/pull/284
Author: @zxhlyh
Created: 6/2/2023
Status: Merged
Merged: 6/2/2023
Merged by: @zxhlyh

Base: deploy/devHead: fix/header-nav-load-more-app


📝 Commits (7)

📊 Changes

80 files changed (+1554 additions, -890 deletions)

View changed files

📝 api/controllers/console/__init__.py (+1 -1)
📝 api/controllers/console/app/app.py (+2 -37)
api/controllers/console/app/generator.py (+75 -0)
📝 api/controllers/console/datasets/datasets_document.py (+7 -4)
📝 api/core/chain/llm_router_chain.py (+4 -34)
📝 api/core/chain/multi_dataset_router_chain.py (+6 -2)
📝 api/core/generator/llm_generator.py (+44 -0)
api/core/prompt/output_parser/rule_config_generator.py (+32 -0)
📝 api/core/prompt/prompts.py (+57 -0)
api/libs/json_in_md_parser.py (+38 -0)
📝 api/services/dataset_service.py (+138 -39)
📝 api/tasks/clean_document_task.py (+1 -2)
api/tasks/document_indexing_update_task.py (+85 -0)
📝 api/tasks/remove_document_from_index_task.py (+1 -2)
📝 web/app/(commonLayout)/_layout-client.tsx (+11 -5)
📝 web/app/(commonLayout)/app/(appDetailLayout)/[appId]/overview/cardView.tsx (+1 -0)
📝 web/app/(commonLayout)/app/(appDetailLayout)/[appId]/overview/welcome-banner.tsx (+12 -12)
📝 web/app/(commonLayout)/apps/AppCard.tsx (+1 -1)
📝 web/app/(commonLayout)/apps/Apps.tsx (+5 -6)
web/app/(commonLayout)/datasets/(datasetDetailLayout)/[datasetId]/documents/[documentId]/settings/page.tsx (+16 -0)

...and 60 more files

📄 Description

No description provided


🔄 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/langgenius/dify/pull/284 **Author:** [@zxhlyh](https://github.com/zxhlyh) **Created:** 6/2/2023 **Status:** ✅ Merged **Merged:** 6/2/2023 **Merged by:** [@zxhlyh](https://github.com/zxhlyh) **Base:** `deploy/dev` ← **Head:** `fix/header-nav-load-more-app` --- ### 📝 Commits (7) - [`a616bf3`](https://github.com/langgenius/dify/commit/a616bf3129ef77fb46b3088f645265eeeb9cccd6) Fix/long more suggestion not see all (#272) - [`44a1aa5`](https://github.com/langgenius/dify/commit/44a1aa5e4458c8c9566935e7c5a8055cba21685b) fix: dataset_tool npe (#274) - [`490858a`](https://github.com/langgenius/dify/commit/490858a4d53f6206698ab90888f0f71b34b8e295) feat: auto rule generator (#273) - [`f65a3ad`](https://github.com/langgenius/dify/commit/f65a3ad1cc938d92df73053f5313987351e6741d) Feature/replace default icon in overview (#279) - [`c67f626`](https://github.com/langgenius/dify/commit/c67f626b66fa6ebfbc9871b5b0911a34fecfcd3a) Feat: Support re-segmentation (#114) - [`59e59c1`](https://github.com/langgenius/dify/commit/59e59c19b256fcaf1061819ba24fb015ecd752b8) fix: missing imports (#281) - [`6677562`](https://github.com/langgenius/dify/commit/6677562d59be30abe04c4169d5e452a30d43d494) fix: header nav add load more app ### 📊 Changes **80 files changed** (+1554 additions, -890 deletions) <details> <summary>View changed files</summary> 📝 `api/controllers/console/__init__.py` (+1 -1) 📝 `api/controllers/console/app/app.py` (+2 -37) ➕ `api/controllers/console/app/generator.py` (+75 -0) 📝 `api/controllers/console/datasets/datasets_document.py` (+7 -4) 📝 `api/core/chain/llm_router_chain.py` (+4 -34) 📝 `api/core/chain/multi_dataset_router_chain.py` (+6 -2) 📝 `api/core/generator/llm_generator.py` (+44 -0) ➕ `api/core/prompt/output_parser/rule_config_generator.py` (+32 -0) 📝 `api/core/prompt/prompts.py` (+57 -0) ➕ `api/libs/json_in_md_parser.py` (+38 -0) 📝 `api/services/dataset_service.py` (+138 -39) 📝 `api/tasks/clean_document_task.py` (+1 -2) ➕ `api/tasks/document_indexing_update_task.py` (+85 -0) 📝 `api/tasks/remove_document_from_index_task.py` (+1 -2) 📝 `web/app/(commonLayout)/_layout-client.tsx` (+11 -5) 📝 `web/app/(commonLayout)/app/(appDetailLayout)/[appId]/overview/cardView.tsx` (+1 -0) 📝 `web/app/(commonLayout)/app/(appDetailLayout)/[appId]/overview/welcome-banner.tsx` (+12 -12) 📝 `web/app/(commonLayout)/apps/AppCard.tsx` (+1 -1) 📝 `web/app/(commonLayout)/apps/Apps.tsx` (+5 -6) ➕ `web/app/(commonLayout)/datasets/(datasetDetailLayout)/[datasetId]/documents/[documentId]/settings/page.tsx` (+16 -0) _...and 60 more files_ </details> ### 📄 Description _No description provided_ --- <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-21 20:18:54 -05:00
yindo closed this issue 2026-02-21 20:18:54 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langgenius/dify#22414