[PR #1892] [MERGED] Enable editing and setting of meta-tag information #3818

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

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/1892
Author: @timothycarambat
Created: 7/18/2024
Status: Merged
Merged: 7/19/2024
Merged by: @timothycarambat

Base: masterHead: 1373-meta-modifications


📝 Commits (10+)

  • 69980b0 Enable editing and setting of meta-tag information
  • 36de8c7 cleanup
  • afe92d0 Merge branch 'master' into 1373-meta-modifications
  • a01e898 tmp build for testing
  • e0f9da6 Merge branch '1373-meta-modifications' of github.com:Mintplex-Labs/anything-llm into 1373-meta-modifications
  • af57b41 finally always refresh
  • ea7fb0a unset workflow
  • ae5cade Merge branch 'master' into 1373-meta-modifications
  • 6fc2edb Merge branch 'master' into 1373-meta-modifications
  • b0830a7 dev build

📊 Changes

10 files changed (+441 additions, -30 deletions)

View changed files

📝 frontend/index.html (+28 -28)
📝 frontend/package.json (+1 -1)
frontend/scripts/postbuild.js (+8 -0)
frontend/src/pages/GeneralSettings/Appearance/CustomSiteSettings/index.jsx (+120 -0)
📝 frontend/src/pages/GeneralSettings/Appearance/index.jsx (+2 -0)
📝 frontend/vite.config.js (+9 -0)
📝 server/endpoints/admin.js (+8 -0)
📝 server/index.js (+5 -1)
📝 server/models/systemSettings.js (+27 -0)
server/utils/boot/MetaGenerator.js (+233 -0)

📄 Description

Pull Request Type

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

Relevant Issues

resolves #1373

What is in this change?

Enable the admin user to customize the appearance of the browser tab "title" and "favicon". No other tags are currently editable.

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/1892 **Author:** [@timothycarambat](https://github.com/timothycarambat) **Created:** 7/18/2024 **Status:** ✅ Merged **Merged:** 7/19/2024 **Merged by:** [@timothycarambat](https://github.com/timothycarambat) **Base:** `master` ← **Head:** `1373-meta-modifications` --- ### 📝 Commits (10+) - [`69980b0`](https://github.com/Mintplex-Labs/anything-llm/commit/69980b0be7548b5a1fa4d89edae262b7a8afa832) Enable editing and setting of meta-tag information - [`36de8c7`](https://github.com/Mintplex-Labs/anything-llm/commit/36de8c7c642d8cd00c6d0abb67b8e8ccc913e9e9) cleanup - [`afe92d0`](https://github.com/Mintplex-Labs/anything-llm/commit/afe92d0a21b93285d9ef5f9401135acc686843ef) Merge branch 'master' into 1373-meta-modifications - [`a01e898`](https://github.com/Mintplex-Labs/anything-llm/commit/a01e8980c556146514ef2904aa844fb0205bbc6a) tmp build for testing - [`e0f9da6`](https://github.com/Mintplex-Labs/anything-llm/commit/e0f9da6232cf316d80bfa90c47ebba4bbb8fea15) Merge branch '1373-meta-modifications' of github.com:Mintplex-Labs/anything-llm into 1373-meta-modifications - [`af57b41`](https://github.com/Mintplex-Labs/anything-llm/commit/af57b415d4c3b0597441189564d8bde7bdff33d5) finally always refresh - [`ea7fb0a`](https://github.com/Mintplex-Labs/anything-llm/commit/ea7fb0a4228d1f1834bdf226f280717e90e85e82) unset workflow - [`ae5cade`](https://github.com/Mintplex-Labs/anything-llm/commit/ae5cade1c7a2695379fa92c65172eb3e7e7941c7) Merge branch 'master' into 1373-meta-modifications - [`6fc2edb`](https://github.com/Mintplex-Labs/anything-llm/commit/6fc2edbd3fb94d7479458ca3a3c5ef5dacf8f37b) Merge branch 'master' into 1373-meta-modifications - [`b0830a7`](https://github.com/Mintplex-Labs/anything-llm/commit/b0830a72b46a33de4ccc6da0f65249417f753781) dev build ### 📊 Changes **10 files changed** (+441 additions, -30 deletions) <details> <summary>View changed files</summary> 📝 `frontend/index.html` (+28 -28) 📝 `frontend/package.json` (+1 -1) ➕ `frontend/scripts/postbuild.js` (+8 -0) ➕ `frontend/src/pages/GeneralSettings/Appearance/CustomSiteSettings/index.jsx` (+120 -0) 📝 `frontend/src/pages/GeneralSettings/Appearance/index.jsx` (+2 -0) 📝 `frontend/vite.config.js` (+9 -0) 📝 `server/endpoints/admin.js` (+8 -0) 📝 `server/index.js` (+5 -1) 📝 `server/models/systemSettings.js` (+27 -0) ➕ `server/utils/boot/MetaGenerator.js` (+233 -0) </details> ### 📄 Description ### Pull Request Type <!-- For change type, change [ ] to [x]. --> - [ ] ✨ feat - [x] 🐛 fix - [x] ♻️ refactor - [ ] 💄 style - [x] 🔨 chore - [ ] 📝 docs ### Relevant Issues <!-- Use "resolves #xxx" to auto resolve on merge. Otherwise, please use "connect #xxx" --> resolves #1373 ### What is in this change? Enable the admin user to customize the appearance of the browser tab "title" and "favicon". No other tags are currently editable. <!-- Describe the changes in this PR that are impactful to the repo. --> ### 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 - [ ] 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:33 -05:00
yindo closed this issue 2026-02-22 18:34:33 -05:00
yindo changed title from [PR #1892] Enable editing and setting of meta-tag information to [PR #1892] [MERGED] Enable editing and setting of meta-tag information 2026-06-05 15:15:22 -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#3818