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