Timothy J. Baek 11 months ago
parent
commit
807cfdecfb

+ 1 - 1
src/lib/components/chat/Chat.svelte

@@ -323,7 +323,7 @@
 		} else if (messages.length != 0 && messages.at(-1).done != true) {
 			// Response not done
 			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.status !== 'processed').length > 0) {
 			// Upload not done
 			toast.error(
 				$i18n.t(

+ 1 - 1
src/lib/components/chat/MessageInput.svelte

@@ -363,7 +363,7 @@
 							files = [
 								...files,
 								{
-									type: e?.detail?.type ?? 'doc',
+									type: e?.detail?.type ?? 'file',
 									...e.detail,
 									status: 'processed'
 								}