mirror of
https://github.com/open-webui/open-webui
synced 2024-11-06 08:56:39 +00:00
feat: web doc url link
This commit is contained in:
parent
07919a878f
commit
7467b7fd67
@ -145,6 +145,7 @@
|
|||||||
name: url,
|
name: url,
|
||||||
collection_name: '',
|
collection_name: '',
|
||||||
upload_status: false,
|
upload_status: false,
|
||||||
|
url: url,
|
||||||
error: ''
|
error: ''
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -82,8 +82,14 @@
|
|||||||
{#if file.type === 'image'}
|
{#if file.type === 'image'}
|
||||||
<img src={file.url} alt="input" class=" max-h-96 rounded-lg" draggable="false" />
|
<img src={file.url} alt="input" class=" max-h-96 rounded-lg" draggable="false" />
|
||||||
{:else if file.type === 'doc'}
|
{:else if file.type === 'doc'}
|
||||||
<div
|
<button
|
||||||
class="h-16 w-[15rem] flex items-center space-x-3 px-2.5 dark:bg-gray-600 rounded-xl border border-gray-200 dark:border-none"
|
class="h-16 w-[15rem] flex items-center space-x-3 px-2.5 dark:bg-gray-600 rounded-xl border border-gray-200 dark:border-none text-left"
|
||||||
|
type="button"
|
||||||
|
on:click={() => {
|
||||||
|
if (file?.url) {
|
||||||
|
window.open(file?.url, '_blank').focus();
|
||||||
|
}
|
||||||
|
}}
|
||||||
>
|
>
|
||||||
<div class="p-2.5 bg-red-400 text-white rounded-lg">
|
<div class="p-2.5 bg-red-400 text-white rounded-lg">
|
||||||
<svg
|
<svg
|
||||||
@ -110,7 +116,7 @@
|
|||||||
|
|
||||||
<div class=" text-gray-500 text-sm">Document</div>
|
<div class=" text-gray-500 text-sm">Document</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</button>
|
||||||
{/if}
|
{/if}
|
||||||
</div>
|
</div>
|
||||||
{/each}
|
{/each}
|
||||||
|
Loading…
Reference in New Issue
Block a user