mirror of
https://github.com/open-webui/open-webui
synced 2025-04-27 17:51:31 +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
@ -608,7 +608,7 @@ export const convertOpenAIChats = (_chats) => {
|
||||
user_id: '',
|
||||
title: convo['title'],
|
||||
chat: chat,
|
||||
timestamp: convo['timestamp']
|
||||
timestamp: convo['create_time']
|
||||
});
|
||||
} else {
|
||||
failed++;
|
||||
|
Loading…
Reference in New Issue
Block a user