[PR #3597] [MERGED] [CHORE] Consistent table styling across settings pages #4328

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

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/3597
Author: @shatfield4
Created: 4/4/2025
Status: Merged
Merged: 4/7/2025
Merged by: @timothycarambat

Base: masterHead: rework-tables


📝 Commits (3)

  • b5a4dd0 make all tables styling consistent across settings pages
  • dc075ab Merge branch 'master' into rework-tables
  • b722818 Merge branch 'master' into rework-tables

📊 Changes

20 files changed (+153 additions, -157 deletions)

View changed files

📝 frontend/src/pages/Admin/Invitations/InviteRow/index.jsx (+13 -17)
📝 frontend/src/pages/Admin/Invitations/index.jsx (+1 -1)
📝 frontend/src/pages/Admin/Logging/LogRow/index.jsx (+9 -9)
📝 frontend/src/pages/Admin/Logging/index.jsx (+1 -1)
📝 frontend/src/pages/Admin/SystemPromptVariables/VariableRow/index.jsx (+10 -9)
📝 frontend/src/pages/Admin/SystemPromptVariables/index.jsx (+4 -4)
📝 frontend/src/pages/Admin/Users/UserRow/index.jsx (+8 -8)
📝 frontend/src/pages/Admin/Users/index.jsx (+1 -1)
📝 frontend/src/pages/Admin/Workspaces/WorkspaceRow/index.jsx (+8 -8)
📝 frontend/src/pages/Admin/Workspaces/index.jsx (+1 -1)
📝 frontend/src/pages/GeneralSettings/ApiKeys/ApiKeyRow/index.jsx (+7 -9)
📝 frontend/src/pages/GeneralSettings/ApiKeys/index.jsx (+1 -1)
📝 frontend/src/pages/GeneralSettings/BrowserExtensionApiKey/BrowserExtensionApiKeyRow/index.jsx (+31 -29)
📝 frontend/src/pages/GeneralSettings/BrowserExtensionApiKey/index.jsx (+5 -5)
📝 frontend/src/pages/GeneralSettings/Chats/ChatRow/index.jsx (+9 -9)
📝 frontend/src/pages/GeneralSettings/Chats/index.jsx (+3 -3)
📝 frontend/src/pages/GeneralSettings/EmbedChats/ChatRow/index.jsx (+8 -11)
📝 frontend/src/pages/GeneralSettings/EmbedChats/index.jsx (+1 -1)
📝 frontend/src/pages/GeneralSettings/EmbedConfigs/EmbedRow/index.jsx (+31 -29)
📝 frontend/src/pages/GeneralSettings/EmbedConfigs/index.jsx (+1 -1)

📄 Description

Pull Request Type

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

Relevant Issues

resolves #xxx

What is in this change?

  • Rework table styling across all settings pages to ensure consistency

Additional Information

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/3597 **Author:** [@shatfield4](https://github.com/shatfield4) **Created:** 4/4/2025 **Status:** ✅ Merged **Merged:** 4/7/2025 **Merged by:** [@timothycarambat](https://github.com/timothycarambat) **Base:** `master` ← **Head:** `rework-tables` --- ### 📝 Commits (3) - [`b5a4dd0`](https://github.com/Mintplex-Labs/anything-llm/commit/b5a4dd04f14bfe8e4b5506766a4cbac6142965e8) make all tables styling consistent across settings pages - [`dc075ab`](https://github.com/Mintplex-Labs/anything-llm/commit/dc075ab7f505e4a97060cc4c99e7e967068bf2e6) Merge branch 'master' into rework-tables - [`b722818`](https://github.com/Mintplex-Labs/anything-llm/commit/b7228180d4ad99f543e84f8e0d965cd3871b9f62) Merge branch 'master' into rework-tables ### 📊 Changes **20 files changed** (+153 additions, -157 deletions) <details> <summary>View changed files</summary> 📝 `frontend/src/pages/Admin/Invitations/InviteRow/index.jsx` (+13 -17) 📝 `frontend/src/pages/Admin/Invitations/index.jsx` (+1 -1) 📝 `frontend/src/pages/Admin/Logging/LogRow/index.jsx` (+9 -9) 📝 `frontend/src/pages/Admin/Logging/index.jsx` (+1 -1) 📝 `frontend/src/pages/Admin/SystemPromptVariables/VariableRow/index.jsx` (+10 -9) 📝 `frontend/src/pages/Admin/SystemPromptVariables/index.jsx` (+4 -4) 📝 `frontend/src/pages/Admin/Users/UserRow/index.jsx` (+8 -8) 📝 `frontend/src/pages/Admin/Users/index.jsx` (+1 -1) 📝 `frontend/src/pages/Admin/Workspaces/WorkspaceRow/index.jsx` (+8 -8) 📝 `frontend/src/pages/Admin/Workspaces/index.jsx` (+1 -1) 📝 `frontend/src/pages/GeneralSettings/ApiKeys/ApiKeyRow/index.jsx` (+7 -9) 📝 `frontend/src/pages/GeneralSettings/ApiKeys/index.jsx` (+1 -1) 📝 `frontend/src/pages/GeneralSettings/BrowserExtensionApiKey/BrowserExtensionApiKeyRow/index.jsx` (+31 -29) 📝 `frontend/src/pages/GeneralSettings/BrowserExtensionApiKey/index.jsx` (+5 -5) 📝 `frontend/src/pages/GeneralSettings/Chats/ChatRow/index.jsx` (+9 -9) 📝 `frontend/src/pages/GeneralSettings/Chats/index.jsx` (+3 -3) 📝 `frontend/src/pages/GeneralSettings/EmbedChats/ChatRow/index.jsx` (+8 -11) 📝 `frontend/src/pages/GeneralSettings/EmbedChats/index.jsx` (+1 -1) 📝 `frontend/src/pages/GeneralSettings/EmbedConfigs/EmbedRow/index.jsx` (+31 -29) 📝 `frontend/src/pages/GeneralSettings/EmbedConfigs/index.jsx` (+1 -1) </details> ### 📄 Description ### Pull Request Type <!-- For change type, change [ ] to [x]. --> - [ ] ✨ feat - [ ] 🐛 fix - [ ] ♻️ refactor - [x] 💄 style - [ ] 🔨 chore - [ ] 📝 docs ### Relevant Issues <!-- Use "resolves #xxx" to auto resolve on merge. Otherwise, please use "connect #xxx" --> resolves #xxx ### What is in this change? <!-- Describe the changes in this PR that are impactful to the repo. --> - Rework table styling across all settings pages to ensure consistency ### 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:35:36 -05:00
yindo closed this issue 2026-02-22 18:35:36 -05:00
yindo changed title from [PR #3597] [CHORE] Consistent table styling across settings pages to [PR #3597] [MERGED] [CHORE] Consistent table styling across settings pages 2026-06-05 15:18:01 -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#4328