mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-15 13:55:19 +00:00
fixed 5682 dates not surviving importing
Simply replaced the frontend svelte code that does the importing. One of the keys were wrong, it was `convo['timestamp']` instead of `convo['create_time']`
This commit is contained in:
parent
f5c5a4119f
commit
eff1a23c19
1 changed files with 1 additions and 1 deletions
|
|
@ -608,7 +608,7 @@ export const convertOpenAIChats = (_chats) => {
|
||||||
user_id: '',
|
user_id: '',
|
||||||
title: convo['title'],
|
title: convo['title'],
|
||||||
chat: chat,
|
chat: chat,
|
||||||
timestamp: convo['timestamp']
|
timestamp: convo['create_time']
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
failed++;
|
failed++;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue