mirror of
https://github.com/open-webui/open-webui
synced 2025-04-03 12:31:32 +00:00
chore: format
This commit is contained in:
parent
7e473f194d
commit
40ecc2563a
2
.github/ISSUE_TEMPLATE/bug_report.md
vendored
2
.github/ISSUE_TEMPLATE/bug_report.md
vendored
@ -29,9 +29,11 @@ assignees: ''
|
|||||||
- [ ] I have provided the exact steps to reproduce the bug in the "Steps to Reproduce" section below.
|
- [ ] I have provided the exact steps to reproduce the bug in the "Steps to Reproduce" section below.
|
||||||
|
|
||||||
## Expected Behavior:
|
## Expected Behavior:
|
||||||
|
|
||||||
[Describe what you expected to happen.]
|
[Describe what you expected to happen.]
|
||||||
|
|
||||||
## Actual Behavior:
|
## Actual Behavior:
|
||||||
|
|
||||||
[Describe what actually happened.]
|
[Describe what actually happened.]
|
||||||
|
|
||||||
## Description
|
## Description
|
||||||
|
@ -32,4 +32,5 @@ We regularly audit our internal processes and system architecture for vulnerabil
|
|||||||
For immediate concerns or detailed reports that meet our guidelines, please create an issue in our [issue tracker](/open-webui/open-webui/issues) or contact us on [Discord](https://discord.gg/5rJgQTnV4s).
|
For immediate concerns or detailed reports that meet our guidelines, please create an issue in our [issue tracker](/open-webui/open-webui/issues) or contact us on [Discord](https://discord.gg/5rJgQTnV4s).
|
||||||
|
|
||||||
---
|
---
|
||||||
_Last updated on **2024-08-06**._
|
|
||||||
|
_Last updated on **2024-08-06**._
|
||||||
|
4
package-lock.json
generated
4
package-lock.json
generated
@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "open-webui",
|
"name": "open-webui",
|
||||||
"version": "0.3.11",
|
"version": "0.3.12",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "open-webui",
|
"name": "open-webui",
|
||||||
"version": "0.3.11",
|
"version": "0.3.12",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@codemirror/lang-javascript": "^6.2.2",
|
"@codemirror/lang-javascript": "^6.2.2",
|
||||||
"@codemirror/lang-python": "^6.1.6",
|
"@codemirror/lang-python": "^6.1.6",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "open-webui",
|
"name": "open-webui",
|
||||||
"version": "0.3.11",
|
"version": "0.3.12",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "npm run pyodide:fetch && vite dev --host",
|
"dev": "npm run pyodide:fetch && vite dev --host",
|
||||||
|
@ -125,91 +125,6 @@
|
|||||||
code={revertSanitizedResponseContent(token?.text ?? '')}
|
code={revertSanitizedResponseContent(token?.text ?? '')}
|
||||||
/>
|
/>
|
||||||
{/if}
|
{/if}
|
||||||
<!-- {:else if token.type === 'heading'}
|
|
||||||
<svelte:element this={headerComponent(token.depth)}>
|
|
||||||
<MarkdownInlineTokens id={`${id}-${tokenIdx}-h`} tokens={token.tokens} />
|
|
||||||
</svelte:element>
|
|
||||||
{:else if token.type === 'hr'}
|
|
||||||
<hr />
|
|
||||||
{:else if token.type === 'blockquote'}
|
|
||||||
<blockquote>
|
|
||||||
<svelte:self id={`${id}-${tokenIdx}`} tokens={token.tokens} />
|
|
||||||
</blockquote>
|
|
||||||
{:else if token.type === 'html'}
|
|
||||||
{@html token.text}
|
|
||||||
{:else if token.type === 'paragraph'}
|
|
||||||
<p>
|
|
||||||
<MarkdownInlineTokens id={`${id}-${tokenIdx}-p`} tokens={token.tokens ?? []} />
|
|
||||||
</p>
|
|
||||||
{:else if token.type === 'list'}
|
|
||||||
{#if token.ordered}
|
|
||||||
<ol start={token.start || 1}>
|
|
||||||
{#each token.items as item, itemIdx}
|
|
||||||
<li>
|
|
||||||
<svelte:self
|
|
||||||
id={`${id}-${tokenIdx}-${itemIdx}`}
|
|
||||||
tokens={item.tokens}
|
|
||||||
top={token.loose}
|
|
||||||
/>
|
|
||||||
</li>
|
|
||||||
{/each}
|
|
||||||
</ol>
|
|
||||||
{:else}
|
|
||||||
<ul>
|
|
||||||
{#each token.items as item, itemIdx}
|
|
||||||
<li>
|
|
||||||
<svelte:self
|
|
||||||
id={`${id}-${tokenIdx}-${itemIdx}`}
|
|
||||||
tokens={item.tokens}
|
|
||||||
top={token.loose}
|
|
||||||
/>
|
|
||||||
</li>
|
|
||||||
{/each}
|
|
||||||
</ul>
|
|
||||||
{/if}
|
|
||||||
{:else if token.type === 'table'}
|
|
||||||
<table>
|
|
||||||
<thead>
|
|
||||||
<tr>
|
|
||||||
{#each token.header as header, headerIdx}
|
|
||||||
<th style={token.align[headerIdx] ? '' : `text-align: ${token.align[headerIdx]}`}>
|
|
||||||
<MarkdownInlineTokens
|
|
||||||
id={`${id}-${tokenIdx}-header-${headerIdx}`}
|
|
||||||
tokens={header.tokens}
|
|
||||||
/>
|
|
||||||
</th>
|
|
||||||
{/each}
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
<tbody>
|
|
||||||
{#each token.rows as row, rowIdx}
|
|
||||||
<tr>
|
|
||||||
{#each row ?? [] as cell, cellIdx}
|
|
||||||
<td style={token.align[cellIdx] ? '' : `text-align: ${token.align[cellIdx]}`}>
|
|
||||||
<MarkdownInlineTokens
|
|
||||||
id={`${id}-${tokenIdx}-row-${rowIdx}-${cellIdx}`}
|
|
||||||
tokens={cell.tokens}
|
|
||||||
/>
|
|
||||||
</td>
|
|
||||||
{/each}
|
|
||||||
</tr>
|
|
||||||
{/each}
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
{:else if token.type === 'text'} -->
|
|
||||||
<!-- {#if top}
|
|
||||||
<p>
|
|
||||||
{#if token.tokens}
|
|
||||||
<MarkdownInlineTokens id={`${id}-${tokenIdx}-t`} tokens={token.tokens} />
|
|
||||||
{:else}
|
|
||||||
{unescapeHtml(token.text)}
|
|
||||||
{/if}
|
|
||||||
</p>
|
|
||||||
{:else if token.tokens}
|
|
||||||
<MarkdownInlineTokens id={`${id}-${tokenIdx}-p`} tokens={token.tokens ?? []} />
|
|
||||||
{:else}
|
|
||||||
{unescapeHtml(token.text)}
|
|
||||||
{/if} -->
|
|
||||||
{:else}
|
{:else}
|
||||||
{@html marked.parse(token.raw, {
|
{@html marked.parse(token.raw, {
|
||||||
...defaults,
|
...defaults,
|
||||||
|
Loading…
Reference in New Issue
Block a user