[PR #718] [MERGED] [FEAT] New Workspace Settings Layout #3468

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

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/718
Author: @shatfield4
Created: 2/13/2024
Status: Merged
Merged: 2/14/2024
Merged by: @timothycarambat

Base: masterHead: 705-feat-new-workspace-settings-layout


📝 Commits (8)

  • b1936b7 WIP new settings layout
  • d1344c1 add suggested messages to general & appearance and clean up/make more user friendly
  • 0c1c6b2 lazy load workspace settings pages
  • 70b5478 Merge branch 'master' into 705-feat-new-workspace-settings-layout
  • f1de40a css fix on X button for document picker where button is barely clickable
  • 7de5582 remove additional workspace settings page
  • e548b7f fix thread selection action when on thread
  • 4a64067 refactor inputs into sub-components

📊 Changes

14 files changed (+413 additions, -775 deletions)

View changed files

📝 frontend/src/App.jsx (+4 -4)
📝 frontend/src/components/Modals/MangeWorkspace/Documents/index.jsx (+1 -1)
frontend/src/components/Modals/MangeWorkspace/Settings/ChatModelPreference/index.jsx (+0 -120)
frontend/src/components/Modals/MangeWorkspace/Settings/index.jsx (+0 -387)
📝 frontend/src/components/Modals/MangeWorkspace/index.jsx (+8 -44)
📝 frontend/src/components/Sidebar/ActiveWorkspaces/ThreadContainer/ThreadItem/index.jsx (+5 -3)
📝 frontend/src/components/Sidebar/ActiveWorkspaces/index.jsx (+65 -30)
📝 frontend/src/hooks/useGetProvidersModels.js (+0 -0)
frontend/src/pages/WorkspaceSettings/ChatSettings/index.jsx (+76 -0)
frontend/src/pages/WorkspaceSettings/GeneralAppearance/index.jsx (+74 -0)
frontend/src/pages/WorkspaceSettings/VectorDatabase/index.jsx (+56 -0)
📝 frontend/src/pages/WorkspaceSettings/index.jsx (+95 -184)
📝 frontend/src/utils/paths.js (+10 -2)
frontend/src/utils/types.js (+19 -0)

📄 Description

Pull Request Type

  • feat
  • 🐛 fix
  • ♻️ refactor
  • 💄 style
  • 🔨 chore
  • 📝 docs

Relevant Issues

resolves #705

What is in this change?

Describe the changes in this PR that are impactful to the repo.

  • Implement new workspace settings page and separate from document uploader modal

Additional Information

Add any other context about the Pull Request here that was not captured above.

Developer Validations

  • I ran yarn lint from the root of the repo & committed changes
  • Relevant documentation has been updated
  • I have tested my code functionality
  • Docker build succeeds locally

🔄 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/718 **Author:** [@shatfield4](https://github.com/shatfield4) **Created:** 2/13/2024 **Status:** ✅ Merged **Merged:** 2/14/2024 **Merged by:** [@timothycarambat](https://github.com/timothycarambat) **Base:** `master` ← **Head:** `705-feat-new-workspace-settings-layout` --- ### 📝 Commits (8) - [`b1936b7`](https://github.com/Mintplex-Labs/anything-llm/commit/b1936b746f4efdaed914171b10b899ab0c0d8b32) WIP new settings layout - [`d1344c1`](https://github.com/Mintplex-Labs/anything-llm/commit/d1344c1d8234e265e304f513b916037c818b9bf3) add suggested messages to general & appearance and clean up/make more user friendly - [`0c1c6b2`](https://github.com/Mintplex-Labs/anything-llm/commit/0c1c6b200b84cd792f8027e7c263e47495375502) lazy load workspace settings pages - [`70b5478`](https://github.com/Mintplex-Labs/anything-llm/commit/70b54787aa9cc65e420f3dd3f0bede20add8202f) Merge branch 'master' into 705-feat-new-workspace-settings-layout - [`f1de40a`](https://github.com/Mintplex-Labs/anything-llm/commit/f1de40a6a701940f0d1b81b2067807f57c22854b) css fix on X button for document picker where button is barely clickable - [`7de5582`](https://github.com/Mintplex-Labs/anything-llm/commit/7de55828669b8e60010d261d036bda8d66cbc6e9) remove additional workspace settings page - [`e548b7f`](https://github.com/Mintplex-Labs/anything-llm/commit/e548b7fecbdd7ad99e67e2dca28de311f25490a1) fix thread selection action when on thread - [`4a64067`](https://github.com/Mintplex-Labs/anything-llm/commit/4a640678c39c629e67882ab4079991c75b9dcaae) refactor inputs into sub-components ### 📊 Changes **14 files changed** (+413 additions, -775 deletions) <details> <summary>View changed files</summary> 📝 `frontend/src/App.jsx` (+4 -4) 📝 `frontend/src/components/Modals/MangeWorkspace/Documents/index.jsx` (+1 -1) ➖ `frontend/src/components/Modals/MangeWorkspace/Settings/ChatModelPreference/index.jsx` (+0 -120) ➖ `frontend/src/components/Modals/MangeWorkspace/Settings/index.jsx` (+0 -387) 📝 `frontend/src/components/Modals/MangeWorkspace/index.jsx` (+8 -44) 📝 `frontend/src/components/Sidebar/ActiveWorkspaces/ThreadContainer/ThreadItem/index.jsx` (+5 -3) 📝 `frontend/src/components/Sidebar/ActiveWorkspaces/index.jsx` (+65 -30) 📝 `frontend/src/hooks/useGetProvidersModels.js` (+0 -0) ➕ `frontend/src/pages/WorkspaceSettings/ChatSettings/index.jsx` (+76 -0) ➕ `frontend/src/pages/WorkspaceSettings/GeneralAppearance/index.jsx` (+74 -0) ➕ `frontend/src/pages/WorkspaceSettings/VectorDatabase/index.jsx` (+56 -0) 📝 `frontend/src/pages/WorkspaceSettings/index.jsx` (+95 -184) 📝 `frontend/src/utils/paths.js` (+10 -2) ➕ `frontend/src/utils/types.js` (+19 -0) </details> ### 📄 Description ### Pull Request Type <!-- For change type, change [ ] to [x]. --> - [x] ✨ feat - [ ] 🐛 fix - [ ] ♻️ refactor - [ ] 💄 style - [ ] 🔨 chore - [ ] 📝 docs ### Relevant Issues <!-- Use "resolves #xxx" to auto resolve on merge. Otherwise, please use "connect #xxx" --> resolves #705 ### What is in this change? Describe the changes in this PR that are impactful to the repo. - Implement new workspace settings page and separate from document uploader modal ### Additional Information Add any other context about the Pull Request here that was not captured above. ### Developer Validations <!-- All of the applicable items should be checked. --> - [x] I ran `yarn lint` from the root of the repo & committed changes - [x] Relevant documentation has been updated - [x] I have tested my code functionality - [x] Docker build succeeds locally --- <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:33:51 -05:00
yindo closed this issue 2026-02-22 18:33:51 -05:00
yindo changed title from [PR #718] [FEAT] New Workspace Settings Layout to [PR #718] [MERGED] [FEAT] New Workspace Settings Layout 2026-06-05 15:13:35 -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#3468