"...git@developer.sourcefind.cn:chenpangpang/open-webui.git" did not exist on "2dbbd1bc6feb7cfcee0fc7be168bbc0f7b84d899"
Commit 1b100660 authored by Timothy J. Baek's avatar Timothy J. Baek
Browse files

fix: image

parent 1007f67a
...@@ -323,7 +323,10 @@ ...@@ -323,7 +323,10 @@
} else if (messages.length != 0 && messages.at(-1).done != true) { } else if (messages.length != 0 && messages.at(-1).done != true) {
// Response not done // Response not done
console.log('wait'); console.log('wait');
} else if (files.length > 0 && files.filter((file) => file.status !== 'processed').length > 0) { } else if (
files.length > 0 &&
files.filter((file) => file.type !== 'image' && file.status !== 'processed').length > 0
) {
// Upload not done // Upload not done
toast.error( toast.error(
$i18n.t( $i18n.t(
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment