mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-11 20:05:19 +00:00
refac
This commit is contained in:
parent
600344f2e8
commit
9b5da77ffc
3 changed files with 3 additions and 1 deletions
|
|
@ -6,6 +6,7 @@ python-multipart==0.0.20
|
||||||
python-socketio==5.13.0
|
python-socketio==5.13.0
|
||||||
python-jose==3.4.0
|
python-jose==3.4.0
|
||||||
passlib[bcrypt]==1.7.4
|
passlib[bcrypt]==1.7.4
|
||||||
|
cryptography
|
||||||
|
|
||||||
requests==2.32.4
|
requests==2.32.4
|
||||||
aiohttp==3.11.11
|
aiohttp==3.11.11
|
||||||
|
|
|
||||||
|
|
@ -14,6 +14,7 @@ dependencies = [
|
||||||
"python-socketio==5.13.0",
|
"python-socketio==5.13.0",
|
||||||
"python-jose==3.4.0",
|
"python-jose==3.4.0",
|
||||||
"passlib[bcrypt]==1.7.4",
|
"passlib[bcrypt]==1.7.4",
|
||||||
|
"cryptography",
|
||||||
|
|
||||||
"requests==2.32.4",
|
"requests==2.32.4",
|
||||||
"aiohttp==3.11.11",
|
"aiohttp==3.11.11",
|
||||||
|
|
|
||||||
|
|
@ -873,9 +873,9 @@ Provide the enhanced notes in markdown format. Use markdown syntax for headings,
|
||||||
<RichTextInput
|
<RichTextInput
|
||||||
className="input-prose-sm px-0.5"
|
className="input-prose-sm px-0.5"
|
||||||
bind:value={note.data.content.json}
|
bind:value={note.data.content.json}
|
||||||
placeholder={$i18n.t('Write something...')}
|
|
||||||
html={note.data?.content?.html}
|
html={note.data?.content?.html}
|
||||||
json={true}
|
json={true}
|
||||||
|
placeholder={$i18n.t('Write something...')}
|
||||||
editable={versionIdx === null && !enhancing}
|
editable={versionIdx === null && !enhancing}
|
||||||
onChange={(content) => {
|
onChange={(content) => {
|
||||||
note.data.content.html = content.html;
|
note.data.content.html = content.html;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue