refac: iframe include allow-downloads by default

This commit is contained in:
Timothy Jaeryang Baek 2025-06-16 16:24:51 +04:00
parent 76fe344eb8
commit 8e139b04f0
2 changed files with 2 additions and 2 deletions

View File

@ -335,7 +335,7 @@
title="Content" title="Content"
srcdoc={contents[selectedContentIdx].content} srcdoc={contents[selectedContentIdx].content}
class="w-full border-0 h-full rounded-none" class="w-full border-0 h-full rounded-none"
sandbox="allow-scripts{($settings?.iframeSandboxAllowForms ?? false) sandbox="allow-scripts allow-downloads{($settings?.iframeSandboxAllowForms ?? false)
? ' allow-forms' ? ' allow-forms'
: ''}{($settings?.iframeSandboxAllowSameOrigin ?? false) : ''}{($settings?.iframeSandboxAllowSameOrigin ?? false)
? ' allow-same-origin' ? ' allow-same-origin'

View File

@ -78,7 +78,7 @@
src={`${WEBUI_BASE_URL}/api/v1/files/${fileId}/content/html`} src={`${WEBUI_BASE_URL}/api/v1/files/${fileId}/content/html`}
title="Content" title="Content"
frameborder="0" frameborder="0"
sandbox="allow-scripts{($settings?.iframeSandboxAllowForms ?? false) sandbox="allow-scripts allow-downloads{($settings?.iframeSandboxAllowForms ?? false)
? ' allow-forms' ? ' allow-forms'
: ''}{($settings?.iframeSandboxAllowSameOrigin ?? false) ? ' allow-same-origin' : ''}" : ''}{($settings?.iframeSandboxAllowSameOrigin ?? false) ? ' allow-same-origin' : ''}"
referrerpolicy="strict-origin-when-cross-origin" referrerpolicy="strict-origin-when-cross-origin"