mirror of
https://github.com/open-webui/open-webui.git
synced 2026-07-20 20:52:23 -05:00
fix: persist control edits across navigation (#26336)
This commit is contained in:
@@ -1477,8 +1477,8 @@
|
||||
|
||||
chatTitle.set(chatContent.title);
|
||||
|
||||
params = chatContent?.params ?? {};
|
||||
chatFiles = chatContent?.files ?? [];
|
||||
params = structuredClone(chatContent?.params ?? {});
|
||||
chatFiles = structuredClone(chatContent?.files ?? []);
|
||||
|
||||
// Load tasks from chat-level DB field
|
||||
chatTasks = chat?.tasks ?? [];
|
||||
|
||||
Reference in New Issue
Block a user