[PR #766] [MERGED] feat: support app rename and make app card ui better #22674

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

📋 Pull Request Information

Original PR: https://github.com/langgenius/dify/pull/766
Author: @iamjoel
Created: 8/6/2023
Status: Merged
Merged: 8/15/2023
Merged by: @iamjoel

Base: mainHead: feat/appOpt


📝 Commits (10+)

📊 Changes

53 files changed (+612 additions, -419 deletions)

View changed files

📝 web/app/(commonLayout)/app/(appDetailLayout)/[appId]/overview/cardView.tsx (+61 -37)
📝 web/app/(commonLayout)/app/(appDetailLayout)/[appId]/overview/chartView.tsx (+15 -27)
📝 web/app/(commonLayout)/apps/AppCard.tsx (+129 -20)
📝 web/app/(commonLayout)/apps/AppModeLabel.tsx (+1 -1)
📝 web/app/(commonLayout)/apps/Apps.tsx (+1 -1)
📝 web/app/(commonLayout)/apps/NewAppDialog.tsx (+1 -1)
web/app/(commonLayout)/apps/style.module.css (+21 -0)
📝 web/app/(commonLayout)/datasets/DatasetCard.tsx (+1 -1)
📝 web/app/(commonLayout)/list.module.css (+31 -20)
📝 web/app/components/app-sidebar/basic.tsx (+1 -7)
📝 web/app/components/app/chat/answer/index.tsx (+1 -1)
📝 web/app/components/app/log/list.tsx (+1 -1)
📝 web/app/components/app/overview/appCard.tsx (+78 -64)
📝 web/app/components/app/overview/appChart.tsx (+2 -1)
web/app/components/app/overview/assets/refresh-hover.svg (+3 -0)
web/app/components/app/overview/assets/refresh.svg (+3 -0)
📝 web/app/components/app/overview/settings/index.tsx (+13 -5)
web/app/components/app/overview/share-link.tsx (+0 -69)
📝 web/app/components/app/overview/style.module.css (+13 -0)
📝 web/app/components/base/confirm-ui/index.tsx (+2 -2)

...and 33 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/766 **Author:** [@iamjoel](https://github.com/iamjoel) **Created:** 8/6/2023 **Status:** ✅ Merged **Merged:** 8/15/2023 **Merged by:** [@iamjoel](https://github.com/iamjoel) **Base:** `main` ← **Head:** `feat/appOpt` --- ### 📝 Commits (10+) - [`b332ed1`](https://github.com/langgenius/dify/commit/b332ed1b907cdf5de10e8c8c3b8fba34581c44a6) feat: app card view opt - [`cfc92e0`](https://github.com/langgenius/dify/commit/cfc92e06b3e3d65eebc96fef343c84b9a59b80d1) feat: update app name icon - [`67421cb`](https://github.com/langgenius/dify/commit/67421cb2355acabdd7ce8221c15312f061bbbac7) Merge branch main into feat/appOpt - [`4fbdb17`](https://github.com/langgenius/dify/commit/4fbdb17403e0384e25c00e2fcb08955d11b64717) fix: copy - [`064074c`](https://github.com/langgenius/dify/commit/064074c352254d0e166484a19d101e63b2788373) feat: style opt & merge app settings - [`2fbc1f8`](https://github.com/langgenius/dify/commit/2fbc1f8b257c817cc808b8d4911fd70f7a4761d9) fix: del btn style - [`d06a2e9`](https://github.com/langgenius/dify/commit/d06a2e940476ac2e98217cb9d51c098dab96a755) feat: overview add api key btn - [`e292111`](https://github.com/langgenius/dify/commit/e292111f6c99a98bef34082f2ba53d998ffffd6e) feat: update icon - [`f610013`](https://github.com/langgenius/dify/commit/f610013ed20a65d113f1864879b434c8fa9758aa) Merge branch main into feat/appOpt - [`5dd3916`](https://github.com/langgenius/dify/commit/5dd3916b5d7edc0593eab38360172ea313cdb7c4) feat: update language ### 📊 Changes **53 files changed** (+612 additions, -419 deletions) <details> <summary>View changed files</summary> 📝 `web/app/(commonLayout)/app/(appDetailLayout)/[appId]/overview/cardView.tsx` (+61 -37) 📝 `web/app/(commonLayout)/app/(appDetailLayout)/[appId]/overview/chartView.tsx` (+15 -27) 📝 `web/app/(commonLayout)/apps/AppCard.tsx` (+129 -20) 📝 `web/app/(commonLayout)/apps/AppModeLabel.tsx` (+1 -1) 📝 `web/app/(commonLayout)/apps/Apps.tsx` (+1 -1) 📝 `web/app/(commonLayout)/apps/NewAppDialog.tsx` (+1 -1) ➕ `web/app/(commonLayout)/apps/style.module.css` (+21 -0) 📝 `web/app/(commonLayout)/datasets/DatasetCard.tsx` (+1 -1) 📝 `web/app/(commonLayout)/list.module.css` (+31 -20) 📝 `web/app/components/app-sidebar/basic.tsx` (+1 -7) 📝 `web/app/components/app/chat/answer/index.tsx` (+1 -1) 📝 `web/app/components/app/log/list.tsx` (+1 -1) 📝 `web/app/components/app/overview/appCard.tsx` (+78 -64) 📝 `web/app/components/app/overview/appChart.tsx` (+2 -1) ➕ `web/app/components/app/overview/assets/refresh-hover.svg` (+3 -0) ➕ `web/app/components/app/overview/assets/refresh.svg` (+3 -0) 📝 `web/app/components/app/overview/settings/index.tsx` (+13 -5) ➖ `web/app/components/app/overview/share-link.tsx` (+0 -69) 📝 `web/app/components/app/overview/style.module.css` (+13 -0) 📝 `web/app/components/base/confirm-ui/index.tsx` (+2 -2) _...and 33 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:19:29 -05:00
yindo closed this issue 2026-02-21 20:19:29 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langgenius/dify#22674