Skip to content

Commit 5fbfe2b

Browse files
authored
Merge pull request open-webui#15879 from open-webui/dev
0.6.18
2 parents b249809 + 6e03287 commit 5fbfe2b

File tree

8 files changed

+243
-246
lines changed

8 files changed

+243
-246
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.6.18] - 2025-07-19
9+
10+
### Fixed
11+
12+
- 🚑 **Users Not Loading in Groups**: Resolved an issue where user list was not displaying within user groups, restoring full visibility and management of group memberships for teams and admins.
13+
814
## [0.6.17] - 2025-07-19
915

1016
### Added

backend/dev.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1+
export CORS_ALLOW_ORIGIN=http://localhost:5173/
12
PORT="${PORT:-8080}"
2-
uvicorn open_webui.main:app --port $PORT --host 0.0.0.0 --forwarded-allow-ips '*' --reload
3+
uvicorn open_webui.main:app --port $PORT --host 0.0.0.0 --forwarded-allow-ips '*' --reload

hatch_build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def initialize(self, version, build_data):
1717
"NodeJS `npm` is required for building Open Webui but it was not found"
1818
)
1919
stderr.write("### npm install\n")
20-
subprocess.run([npm, "install"], check=True) # noqa: S603
20+
subprocess.run([npm, "install", "--force"], check=True) # noqa: S603
2121
stderr.write("\n### npm run build\n")
2222
os.environ["APP_BUILD_HASH"] = version
2323
subprocess.run([npm, "run", "build"], check=True) # noqa: S603

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "open-webui",
3-
"version": "0.6.17",
3+
"version": "0.6.18",
44
"private": true,
55
"scripts": {
66
"dev": "npm run pyodide:fetch && vite dev --host",

src/lib/components/admin/Users/Groups/Users.svelte

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
</div>
5858
</div>
5959

60-
<div class="mt-3 max-h-[22rem] overflow-y-auto scrollbar-hidden">
60+
<div class="mt-3 scrollbar-hidden">
6161
<div class="flex flex-col gap-2.5">
6262
{#if filteredUsers.length > 0}
6363
{#each filteredUsers as user, userIdx (user.id)}
@@ -78,16 +78,6 @@
7878
<div class="flex w-full items-center justify-between">
7979
<Tooltip content={user.email} placement="top-start">
8080
<div class="flex">
81-
<img
82-
class=" rounded-full size-5 object-cover mr-2.5"
83-
src={user.profile_image_url.startsWith(WEBUI_BASE_URL) ||
84-
user.profile_image_url.startsWith('https://www.gravatar.com/avatar/') ||
85-
user.profile_image_url.startsWith('data:')
86-
? user.profile_image_url
87-
: `${WEBUI_BASE_URL}/user.png`}
88-
alt="user"
89-
/>
90-
9181
<div class=" font-medium self-center">{user.name}</div>
9282
</div>
9383
</Tooltip>

src/lib/components/admin/Users/UserList.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,7 @@
392392
<div class="flex flex-row w-max">
393393
<img
394394
class=" rounded-full w-6 h-6 object-cover mr-2.5"
395-
src={user.profile_image_url.startsWith(WEBUI_BASE_URL) ||
395+
src={user?.profile_image_url?.startsWith(WEBUI_BASE_URL) ||
396396
user.profile_image_url.startsWith('https://www.gravatar.com/avatar/') ||
397397
user.profile_image_url.startsWith('data:')
398398
? user.profile_image_url

src/lib/i18n/locales/ko-KR/translation.json

Lines changed: 229 additions & 229 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)