[PR #1658] [CLOSED] [STYLE] Agent UI mobile styles #3740

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

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/1658
Author: @shatfield4
Created: 6/11/2024
Status: Closed

Base: masterHead: agent-ui-mobile-styles


📝 Commits (10+)

  • 4aa9d0a WIP agent settings redesign
  • dd12c2f WIP rework new agent skill UI
  • 02a7d46 WIP save bar/agent styles
  • 44cf030 WIP update settings fix
  • e593759 desktop agent config UI implementation
  • 731aa5e remove unneeded files
  • ebbf17a fix sql and web browsing plugins not starting & add default badges
  • a7904ce merge with master
  • c441f16 fix serply merge conflict
  • f3e800e implement mobile styles for agent skills ui

📊 Changes

32 files changed (+1481 additions, -115 deletions)

View changed files

📝 frontend/src/App.jsx (+5 -0)
frontend/src/components/ContextualSaveBar/index.jsx (+26 -0)
📝 frontend/src/components/SettingsSidebar/index.jsx (+10 -0)
frontend/src/hooks/useUnsavedChanges.js (+38 -0)
frontend/src/media/agents/generate-charts.png (+0 -0)
frontend/src/media/agents/generate-save-files.png (+0 -0)
frontend/src/media/agents/rag-memory.png (+0 -0)
frontend/src/media/agents/scrape-websites.png (+0 -0)
frontend/src/media/agents/sql-agent.png (+0 -0)
frontend/src/media/agents/view-summarize.png (+0 -0)
frontend/src/pages/Admin/Agents/AgentLLMSelection/AgentLLMItem/index.jsx (+151 -0)
frontend/src/pages/Admin/Agents/AgentLLMSelection/index.jsx (+206 -0)
frontend/src/pages/Admin/Agents/AgentModelSelection/index.jsx (+128 -0)
frontend/src/pages/Admin/Agents/DefaultBadge/index.jsx (+26 -0)
frontend/src/pages/Admin/Agents/DefaultSkill/index.jsx (+29 -0)
📝 frontend/src/pages/Admin/Agents/GenericSkill/index.jsx (+15 -6)
📝 frontend/src/pages/Admin/Agents/SQLConnectorSelection/DBConnection.jsx (+0 -0)
📝 frontend/src/pages/Admin/Agents/SQLConnectorSelection/NewConnectionModal.jsx (+10 -10)
📝 frontend/src/pages/Admin/Agents/SQLConnectorSelection/icons/mssql.png (+0 -0)
📝 frontend/src/pages/Admin/Agents/SQLConnectorSelection/icons/mysql.png (+0 -0)

...and 12 more files

📄 Description

Pull Request Type

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

Relevant Issues

resolves #1564

What is in this change?

  • Branched off of #1565 to implement mobile UI styles

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/1658 **Author:** [@shatfield4](https://github.com/shatfield4) **Created:** 6/11/2024 **Status:** ❌ Closed **Base:** `master` ← **Head:** `agent-ui-mobile-styles` --- ### 📝 Commits (10+) - [`4aa9d0a`](https://github.com/Mintplex-Labs/anything-llm/commit/4aa9d0a39be33f6ceb46c8b5d0f2b722b79d0805) WIP agent settings redesign - [`dd12c2f`](https://github.com/Mintplex-Labs/anything-llm/commit/dd12c2f824a3738cf8ae52fd2308dc9d75f9f82a) WIP rework new agent skill UI - [`02a7d46`](https://github.com/Mintplex-Labs/anything-llm/commit/02a7d46507bb5aae9eb10c45b0f6c25014e27a68) WIP save bar/agent styles - [`44cf030`](https://github.com/Mintplex-Labs/anything-llm/commit/44cf0309918743a68b2b405251b930e4ea959ef1) WIP update settings fix - [`e593759`](https://github.com/Mintplex-Labs/anything-llm/commit/e593759272b406607b25e97f945872602fbffc80) desktop agent config UI implementation - [`731aa5e`](https://github.com/Mintplex-Labs/anything-llm/commit/731aa5ed266af03d9e3d419d94f47bbfb5e37331) remove unneeded files - [`ebbf17a`](https://github.com/Mintplex-Labs/anything-llm/commit/ebbf17aeb512cc852de9fe14cc852254b534f8d6) fix sql and web browsing plugins not starting & add default badges - [`a7904ce`](https://github.com/Mintplex-Labs/anything-llm/commit/a7904ce117d1abfa123939056aaeeb120050ba78) merge with master - [`c441f16`](https://github.com/Mintplex-Labs/anything-llm/commit/c441f167aa1ae41e0bf4464db333a47cde5dde7d) fix serply merge conflict - [`f3e800e`](https://github.com/Mintplex-Labs/anything-llm/commit/f3e800ef9a6493fc7979784b8fdc61dd71bb2341) implement mobile styles for agent skills ui ### 📊 Changes **32 files changed** (+1481 additions, -115 deletions) <details> <summary>View changed files</summary> 📝 `frontend/src/App.jsx` (+5 -0) ➕ `frontend/src/components/ContextualSaveBar/index.jsx` (+26 -0) 📝 `frontend/src/components/SettingsSidebar/index.jsx` (+10 -0) ➕ `frontend/src/hooks/useUnsavedChanges.js` (+38 -0) ➕ `frontend/src/media/agents/generate-charts.png` (+0 -0) ➕ `frontend/src/media/agents/generate-save-files.png` (+0 -0) ➕ `frontend/src/media/agents/rag-memory.png` (+0 -0) ➕ `frontend/src/media/agents/scrape-websites.png` (+0 -0) ➕ `frontend/src/media/agents/sql-agent.png` (+0 -0) ➕ `frontend/src/media/agents/view-summarize.png` (+0 -0) ➕ `frontend/src/pages/Admin/Agents/AgentLLMSelection/AgentLLMItem/index.jsx` (+151 -0) ➕ `frontend/src/pages/Admin/Agents/AgentLLMSelection/index.jsx` (+206 -0) ➕ `frontend/src/pages/Admin/Agents/AgentModelSelection/index.jsx` (+128 -0) ➕ `frontend/src/pages/Admin/Agents/DefaultBadge/index.jsx` (+26 -0) ➕ `frontend/src/pages/Admin/Agents/DefaultSkill/index.jsx` (+29 -0) 📝 `frontend/src/pages/Admin/Agents/GenericSkill/index.jsx` (+15 -6) 📝 `frontend/src/pages/Admin/Agents/SQLConnectorSelection/DBConnection.jsx` (+0 -0) 📝 `frontend/src/pages/Admin/Agents/SQLConnectorSelection/NewConnectionModal.jsx` (+10 -10) 📝 `frontend/src/pages/Admin/Agents/SQLConnectorSelection/icons/mssql.png` (+0 -0) 📝 `frontend/src/pages/Admin/Agents/SQLConnectorSelection/icons/mysql.png` (+0 -0) _...and 12 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 #1564 ### What is in this change? <!-- Describe the changes in this PR that are impactful to the repo. --> - Branched off of #1565 to implement mobile UI styles ### 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:24 -05:00
yindo closed this issue 2026-02-22 18:34:24 -05:00
yindo changed title from [PR #1658] [STYLE] Agent UI mobile styles to [PR #1658] [CLOSED] [STYLE] Agent UI mobile styles 2026-06-05 15:14:58 -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#3740