mirror of
https://github.com/open-webui/open-webui.git
synced 2026-08-28 05:27:35 +00:00
fix: correct pending_user_overlay type definition in Config (#20285)
The Config type incorrectly defined 'pending_user_overlay_description' but the backend returns 'pending_user_overlay_content' and the AccountPending.svelte component correctly accesses that property. This fixes the type mismatch to align with the actual backend response. Fixes #20284
This commit is contained in:
parent
c2c389f722
commit
450421b189
1 changed files with 1 additions and 1 deletions
|
|
@ -284,7 +284,7 @@ type Config = {
|
|||
};
|
||||
ui?: {
|
||||
pending_user_overlay_title?: string;
|
||||
pending_user_overlay_description?: string;
|
||||
pending_user_overlay_content?: string;
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue