[PR #1764] [MERGED] [STYLE] Fix UI bugs #3771

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

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/1764
Author: @shatfield4
Created: 6/26/2024
Status: Merged
Merged: 7/11/2024
Merged by: @timothycarambat

Base: masterHead: fix-ui-bugs


📝 Commits (9)

  • 3771785 fix indentation of citations
  • c8f318f fix outlines of input fields to be consistent
  • 4cbcaf4 remove red from trash icons
  • 13b7b52 fix margin from input title
  • 3a0b527 remove unused component and remove borders on provider search inputs
  • 89aa1c1 make back arrow less opacity in onboarding to highlight next arrow
  • d46ebea fix spacing on all provider options (llm, vectordb, embedder
  • cf4d910 Merge branch 'master' into fix-ui-bugs
  • 0b5b32e Merge branch 'master' into fix-ui-bugs

📊 Changes

76 files changed (+332 additions, -536 deletions)

View changed files

📝 frontend/src/components/EmbeddingSelection/AzureAiOptions/index.jsx (+7 -7)
📝 frontend/src/components/EmbeddingSelection/CohereOptions/index.jsx (+4 -4)
📝 frontend/src/components/EmbeddingSelection/GenericOpenAiOptions/index.jsx (+10 -10)
📝 frontend/src/components/EmbeddingSelection/LMStudioOptions/index.jsx (+4 -4)
📝 frontend/src/components/EmbeddingSelection/LiteLLMOptions/index.jsx (+10 -10)
📝 frontend/src/components/EmbeddingSelection/LocalAiOptions/index.jsx (+10 -10)
📝 frontend/src/components/EmbeddingSelection/OllamaOptions/index.jsx (+4 -4)
📝 frontend/src/components/EmbeddingSelection/OpenAiOptions/index.jsx (+4 -4)
📝 frontend/src/components/EmbeddingSelection/VoyageAiOptions/index.jsx (+4 -4)
📝 frontend/src/components/LLMSelection/AnthropicAiOptions/index.jsx (+4 -4)
📝 frontend/src/components/LLMSelection/AzureAiOptions/index.jsx (+13 -13)
📝 frontend/src/components/LLMSelection/CohereAiOptions/index.jsx (+4 -4)
📝 frontend/src/components/LLMSelection/GeminiLLMOptions/index.jsx (+5 -5)
📝 frontend/src/components/LLMSelection/GenericOpenAiOptions/index.jsx (+13 -13)
📝 frontend/src/components/LLMSelection/GroqAiOptions/index.jsx (+4 -4)
📝 frontend/src/components/LLMSelection/HuggingFaceOptions/index.jsx (+7 -7)
📝 frontend/src/components/LLMSelection/KoboldCPPOptions/index.jsx (+7 -7)
📝 frontend/src/components/LLMSelection/LMStudioOptions/index.jsx (+5 -5)
📝 frontend/src/components/LLMSelection/LiteLLMOptions/index.jsx (+10 -10)
📝 frontend/src/components/LLMSelection/LocalAiOptions/index.jsx (+9 -9)

...and 56 more files

📄 Description

Pull Request Type

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

Relevant Issues

resolves #1759

What is in this change?

This PR fixes the backlog of UI issues from the internal Asana board.
The following was fixed:

  • Fix indentation of citations to match the chat
  • Fix outlines of all input boxes to match for consistency
  • Remove red colors from trash icons
  • Fix input titles margin
  • Adjust opacity of back arrow in onboarding flow to highlight next arrow
  • Fix spacing on all provider options (LLM, vectorDB, and embedder)

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/1764 **Author:** [@shatfield4](https://github.com/shatfield4) **Created:** 6/26/2024 **Status:** ✅ Merged **Merged:** 7/11/2024 **Merged by:** [@timothycarambat](https://github.com/timothycarambat) **Base:** `master` ← **Head:** `fix-ui-bugs` --- ### 📝 Commits (9) - [`3771785`](https://github.com/Mintplex-Labs/anything-llm/commit/377178531f5f38bb142f6faece4f06424749fec9) fix indentation of citations - [`c8f318f`](https://github.com/Mintplex-Labs/anything-llm/commit/c8f318fb379d650c908b243abdede80207d16264) fix outlines of input fields to be consistent - [`4cbcaf4`](https://github.com/Mintplex-Labs/anything-llm/commit/4cbcaf4bf8b139967450e76a1b9edc801655c65c) remove red from trash icons - [`13b7b52`](https://github.com/Mintplex-Labs/anything-llm/commit/13b7b5238e5974e641e1caaec1364525565d26b9) fix margin from input title - [`3a0b527`](https://github.com/Mintplex-Labs/anything-llm/commit/3a0b5279029470d7bdad71b2217f6ade6d7f292e) remove unused component and remove borders on provider search inputs - [`89aa1c1`](https://github.com/Mintplex-Labs/anything-llm/commit/89aa1c15813ed3e41bf5486fec58f7507be71ecf) make back arrow less opacity in onboarding to highlight next arrow - [`d46ebea`](https://github.com/Mintplex-Labs/anything-llm/commit/d46ebeabe7c2b5c7cc84749f42715d566c1f86a3) fix spacing on all provider options (llm, vectordb, embedder - [`cf4d910`](https://github.com/Mintplex-Labs/anything-llm/commit/cf4d910c0357ff0f903e6cf923a9dfa084076135) Merge branch 'master' into fix-ui-bugs - [`0b5b32e`](https://github.com/Mintplex-Labs/anything-llm/commit/0b5b32e9d889744ba4230f52357570f1a9bec5c6) Merge branch 'master' into fix-ui-bugs ### 📊 Changes **76 files changed** (+332 additions, -536 deletions) <details> <summary>View changed files</summary> 📝 `frontend/src/components/EmbeddingSelection/AzureAiOptions/index.jsx` (+7 -7) 📝 `frontend/src/components/EmbeddingSelection/CohereOptions/index.jsx` (+4 -4) 📝 `frontend/src/components/EmbeddingSelection/GenericOpenAiOptions/index.jsx` (+10 -10) 📝 `frontend/src/components/EmbeddingSelection/LMStudioOptions/index.jsx` (+4 -4) 📝 `frontend/src/components/EmbeddingSelection/LiteLLMOptions/index.jsx` (+10 -10) 📝 `frontend/src/components/EmbeddingSelection/LocalAiOptions/index.jsx` (+10 -10) 📝 `frontend/src/components/EmbeddingSelection/OllamaOptions/index.jsx` (+4 -4) 📝 `frontend/src/components/EmbeddingSelection/OpenAiOptions/index.jsx` (+4 -4) 📝 `frontend/src/components/EmbeddingSelection/VoyageAiOptions/index.jsx` (+4 -4) 📝 `frontend/src/components/LLMSelection/AnthropicAiOptions/index.jsx` (+4 -4) 📝 `frontend/src/components/LLMSelection/AzureAiOptions/index.jsx` (+13 -13) 📝 `frontend/src/components/LLMSelection/CohereAiOptions/index.jsx` (+4 -4) 📝 `frontend/src/components/LLMSelection/GeminiLLMOptions/index.jsx` (+5 -5) 📝 `frontend/src/components/LLMSelection/GenericOpenAiOptions/index.jsx` (+13 -13) 📝 `frontend/src/components/LLMSelection/GroqAiOptions/index.jsx` (+4 -4) 📝 `frontend/src/components/LLMSelection/HuggingFaceOptions/index.jsx` (+7 -7) 📝 `frontend/src/components/LLMSelection/KoboldCPPOptions/index.jsx` (+7 -7) 📝 `frontend/src/components/LLMSelection/LMStudioOptions/index.jsx` (+5 -5) 📝 `frontend/src/components/LLMSelection/LiteLLMOptions/index.jsx` (+10 -10) 📝 `frontend/src/components/LLMSelection/LocalAiOptions/index.jsx` (+9 -9) _...and 56 more files_ </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 #1759 ### What is in this change? <!-- Describe the changes in this PR that are impactful to the repo. --> This PR fixes the backlog of UI issues from the internal Asana board. The following was fixed: - Fix indentation of citations to match the chat - Fix outlines of all input boxes to match for consistency - Remove red colors from trash icons - Fix input titles margin - Adjust opacity of back arrow in onboarding flow to highlight next arrow - Fix spacing on all provider options (LLM, vectorDB, and embedder) ### 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:34:28 -05:00
yindo closed this issue 2026-02-22 18:34:28 -05:00
yindo changed title from [PR #1764] [STYLE] Fix UI bugs to [PR #1764] [MERGED] [STYLE] Fix UI bugs 2026-06-05 15:15:08 -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#3771