Unverified Commit 82079e64 authored by Timothy Jaeryang Baek's avatar Timothy Jaeryang Baek Committed by GitHub
Browse files

Merge pull request #3952 from open-webui/dev

fix
parents c74e7df6 1e7a364c
...@@ -33,8 +33,8 @@ ...@@ -33,8 +33,8 @@
<div> <div>
<div class="mb-1.5 font-medium">{$i18n.t('Files')}</div> <div class="mb-1.5 font-medium">{$i18n.t('Files')}</div>
<div> <div class="flex flex-col gap-1">
{#each chatFiles as file} {#each chatFiles as file, fileIdx}
<FileItem <FileItem
className="w-full" className="w-full"
url={`${file?.url}`} url={`${file?.url}`}
...@@ -43,7 +43,9 @@ ...@@ -43,7 +43,9 @@
dismissible={true} dismissible={true}
on:dismiss={() => { on:dismiss={() => {
// Remove the file from the chatFiles array // Remove the file from the chatFiles array
chatFiles = chatFiles.filter((f) => f.id !== file.id);
chatFiles.splice(fileIdx, 1);
chatFiles = chatFiles;
}} }}
/> />
{/each} {/each}
......
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