[PR #833] [MERGED] [FEAT] Settings pages UI updates #3507

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

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/833
Author: @shatfield4
Created: 2/27/2024
Status: Merged
Merged: 3/12/2024
Merged by: @timothycarambat

Base: masterHead: 790-feat-appearance-setting-ui-updates


📝 Commits (10+)

  • 0be5033 WIP main sidebar designs
  • d66d541 hover states and active states for main sidebar
  • 613611c main and settings sidebar UI updates & improve performance using Link instead of
  • ca9e584 update borders to match rest of UI in all pages
  • 0b8084b update borders of all containers to match rest of UI
  • 55206d3 remove unneeded conditional
  • 1e789be Merge branch '809-style-implement-new-side-bar-menus' into 790-feat-appearance-setting-ui-updates
  • 2c3b01b custom messages component redesign and appearance settings layout changes
  • f028746 improve UX of custom logo file uploader component to match designs
  • 31adf6e fix sizing on custom logo upload field

📊 Changes

25 files changed (+568 additions, -554 deletions)

View changed files

📝 frontend/src/components/EditingChatBubble/index.jsx (+43 -40)
📝 frontend/src/components/SettingsSidebar/index.jsx (+3 -1)
📝 frontend/src/components/Sidebar/ActiveWorkspaces/index.jsx (+3 -3)
📝 frontend/src/components/Sidebar/index.jsx (+7 -5)
📝 frontend/src/pages/Admin/Invitations/index.jsx (+15 -10)
📝 frontend/src/pages/Admin/Logging/index.jsx (+12 -10)
📝 frontend/src/pages/Admin/System/index.jsx (+66 -62)
📝 frontend/src/pages/Admin/Users/index.jsx (+10 -8)
📝 frontend/src/pages/Admin/Workspaces/index.jsx (+9 -8)
📝 frontend/src/pages/GeneralSettings/ApiKeys/index.jsx (+10 -9)
📝 frontend/src/pages/GeneralSettings/Appearance/CustomLogo/index.jsx (+75 -47)
📝 frontend/src/pages/GeneralSettings/Appearance/CustomMessages/index.jsx (+19 -12)
📝 frontend/src/pages/GeneralSettings/Appearance/FooterCustomization/NewIconForm/index.jsx (+89 -72)
📝 frontend/src/pages/GeneralSettings/Appearance/FooterCustomization/index.jsx (+39 -97)
📝 frontend/src/pages/GeneralSettings/Appearance/SupportEmail/index.jsx (+6 -4)
📝 frontend/src/pages/GeneralSettings/Appearance/index.jsx (+6 -6)
📝 frontend/src/pages/GeneralSettings/Chats/index.jsx (+29 -39)
📝 frontend/src/pages/GeneralSettings/DataConnectors/Connectors/Github/index.jsx (+7 -7)
📝 frontend/src/pages/GeneralSettings/DataConnectors/Connectors/Youtube/index.jsx (+6 -6)
📝 frontend/src/pages/GeneralSettings/DataConnectors/index.jsx (+13 -8)

...and 5 more files

📄 Description

Pull Request Type

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

Relevant Issues

resolves #790

What is in this change?

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

Implement UI for:

  • Custom logo
  • Custom messages
  • Update layout for all text styles and spacing to match UI
  • All settings pages match new UI

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/833 **Author:** [@shatfield4](https://github.com/shatfield4) **Created:** 2/27/2024 **Status:** ✅ Merged **Merged:** 3/12/2024 **Merged by:** [@timothycarambat](https://github.com/timothycarambat) **Base:** `master` ← **Head:** `790-feat-appearance-setting-ui-updates` --- ### 📝 Commits (10+) - [`0be5033`](https://github.com/Mintplex-Labs/anything-llm/commit/0be503395a4d519407c5b37085c9a363a5055f84) WIP main sidebar designs - [`d66d541`](https://github.com/Mintplex-Labs/anything-llm/commit/d66d54198675d753f0cd24e44ae2ff7f2cc6dfeb) hover states and active states for main sidebar - [`613611c`](https://github.com/Mintplex-Labs/anything-llm/commit/613611cea3df3797cc17e2a547f983f22c2d7be7) main and settings sidebar UI updates & improve performance using Link instead of <a> - [`ca9e584`](https://github.com/Mintplex-Labs/anything-llm/commit/ca9e58417435e21f8157f27c6a4c2e9c8355c616) update borders to match rest of UI in all pages - [`0b8084b`](https://github.com/Mintplex-Labs/anything-llm/commit/0b8084b3c58578ecf8f0c560ec974ae79481cd3a) update borders of all containers to match rest of UI - [`55206d3`](https://github.com/Mintplex-Labs/anything-llm/commit/55206d3462f861324a53c704c98e9bf3e15b216b) remove unneeded conditional - [`1e789be`](https://github.com/Mintplex-Labs/anything-llm/commit/1e789bedec77e91421658eb223695345ae332d01) Merge branch '809-style-implement-new-side-bar-menus' into 790-feat-appearance-setting-ui-updates - [`2c3b01b`](https://github.com/Mintplex-Labs/anything-llm/commit/2c3b01b5afde1e7d592ae47a6d785eb19ff2d66b) custom messages component redesign and appearance settings layout changes - [`f028746`](https://github.com/Mintplex-Labs/anything-llm/commit/f0287463940922a504912e87095dc2954936461f) improve UX of custom logo file uploader component to match designs - [`31adf6e`](https://github.com/Mintplex-Labs/anything-llm/commit/31adf6ebb2c59e8d8eff1d065c339e5ce6e5ce1e) fix sizing on custom logo upload field ### 📊 Changes **25 files changed** (+568 additions, -554 deletions) <details> <summary>View changed files</summary> 📝 `frontend/src/components/EditingChatBubble/index.jsx` (+43 -40) 📝 `frontend/src/components/SettingsSidebar/index.jsx` (+3 -1) 📝 `frontend/src/components/Sidebar/ActiveWorkspaces/index.jsx` (+3 -3) 📝 `frontend/src/components/Sidebar/index.jsx` (+7 -5) 📝 `frontend/src/pages/Admin/Invitations/index.jsx` (+15 -10) 📝 `frontend/src/pages/Admin/Logging/index.jsx` (+12 -10) 📝 `frontend/src/pages/Admin/System/index.jsx` (+66 -62) 📝 `frontend/src/pages/Admin/Users/index.jsx` (+10 -8) 📝 `frontend/src/pages/Admin/Workspaces/index.jsx` (+9 -8) 📝 `frontend/src/pages/GeneralSettings/ApiKeys/index.jsx` (+10 -9) 📝 `frontend/src/pages/GeneralSettings/Appearance/CustomLogo/index.jsx` (+75 -47) 📝 `frontend/src/pages/GeneralSettings/Appearance/CustomMessages/index.jsx` (+19 -12) 📝 `frontend/src/pages/GeneralSettings/Appearance/FooterCustomization/NewIconForm/index.jsx` (+89 -72) 📝 `frontend/src/pages/GeneralSettings/Appearance/FooterCustomization/index.jsx` (+39 -97) 📝 `frontend/src/pages/GeneralSettings/Appearance/SupportEmail/index.jsx` (+6 -4) 📝 `frontend/src/pages/GeneralSettings/Appearance/index.jsx` (+6 -6) 📝 `frontend/src/pages/GeneralSettings/Chats/index.jsx` (+29 -39) 📝 `frontend/src/pages/GeneralSettings/DataConnectors/Connectors/Github/index.jsx` (+7 -7) 📝 `frontend/src/pages/GeneralSettings/DataConnectors/Connectors/Youtube/index.jsx` (+6 -6) 📝 `frontend/src/pages/GeneralSettings/DataConnectors/index.jsx` (+13 -8) _...and 5 more files_ </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 #790 ### What is in this change? Describe the changes in this PR that are impactful to the repo. Implement UI for: - Custom logo - Custom messages - Update layout for all text styles and spacing to match UI - All settings pages match new UI ### 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:55 -05:00
yindo closed this issue 2026-02-22 18:33:55 -05:00
yindo changed title from [PR #833] [FEAT] Settings pages UI updates to [PR #833] [MERGED] [FEAT] Settings pages UI updates 2026-06-05 15:13:47 -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#3507