mirror of
https://github.com/open-webui/open-webui.git
synced 2026-05-08 04:16:03 -05:00
[PR #21813] [CLOSED] fix/chore: add missing hr separators between section groups in user settings #26290
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/open-webui/open-webui/pull/21813
Author: @silentoplayz
Created: 2/24/2026
Status: ❌ Closed
Base:
dev← Head:fix/settings-section-separators📝 Commits (1)
002cd27fix(settings): add missing hr separators between section groups in user settings📊 Changes
4 files changed (+15 additions, -3 deletions)
View changed files
📝
src/lib/components/chat/Settings/Audio.svelte(+5 -2)📝
src/lib/components/chat/Settings/DataControls.svelte(+2 -0)📝
src/lib/components/chat/Settings/General.svelte(+1 -0)📝
src/lib/components/chat/Settings/Interface.svelte(+7 -1)📄 Description
Pull Request Checklist
Note to first-time contributors: Please open a discussion post in Discussions to discuss your idea/fix with the community before creating a pull request, and describe your changes before submitting a pull request.
This is to ensure large feature PRs are discussed with the community first, before starting work on it. If the community does not want this feature or it is not relevant for Open WebUI as a project, it can be identified in the discussion before working on the feature and submitting the PR.
Before submitting, make sure you've checked the following:
devbranch. PRs targetingmainwill be immediately closed.devto ensure no unrelated commits (e.g. frommain) are included. Push updates to the existing PR branch instead of closing and reopening.style: add missing section separator lines in user settings panelsChangelog Entry
Description
Several user-facing settings panels were missing
<hr>separator lines beneath their top-level section headers, making it harder to visually distinguish setting categories at a glance. This is a pure visual consistency fix — no settings logic or behavior is changed.The canonical separator pattern already in use throughout the codebase (e.g.
General.svelte, adminDocuments.svelte,Connections.svelte) was applied uniformly to the affected tabs.Changed
Interface.svelte— added<hr>beneath the UI, Chat, Input, Artifacts, Voice, and File section headers (6 separators added; none previously existed)Audio.svelte— added<hr>beneath the STT Settings, TTS Settings, and Set Voice section headers (moved the pre-existing Set Voice separator from above the header to below it to match the established pattern)DataControls.svelte— added<hr>beneath the Chats and Files section headersGeneral.svelte— added<hr>beneath the WebUI Settings section headerAdditional Information
<hr class=" border-gray-100/30 dark:border-gray-850/30 my-2" />, consistent with the rest of the codebase.About.sveltetab was intentionally left untouched — its layout is informational rather than settings-based, and its existing upstream separator placement was already appropriate.Screenshots or Videos
Before
General.svelteInterface.svelteAudio.svelteDataControls.svelteAfter
General.svelteInterface.svelteAudio.svelteDataControls.svelteContributor License Agreement
By submitting this pull request, I confirm that I have read and fully agree to the Contributor License Agreement (CLA), and I am providing my contributions under its terms.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.