This is an automated email from the ASF dual-hosted git repository.
bbovenzi pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new d253d87f863 UI: Allow file downloads from plugin external view iframes
(#71803)
d253d87f863 is described below
commit d253d87f8635b0519a606c72e9c26e2d0f26803c
Author: Haseeb Malik <[email protected]>
AuthorDate: Fri Aug 21 10:43:39 2026 -0400
UI: Allow file downloads from plugin external view iframes (#71803)
---
airflow-core/src/airflow/ui/src/pages/ExternalView.tsx | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/airflow-core/src/airflow/ui/src/pages/ExternalView.tsx
b/airflow-core/src/airflow/ui/src/pages/ExternalView.tsx
index c74d9b25a4b..2e8a0d0280b 100644
--- a/airflow-core/src/airflow/ui/src/pages/ExternalView.tsx
+++ b/airflow-core/src/airflow/ui/src/pages/ExternalView.tsx
@@ -71,7 +71,10 @@ export const ExternalView = () => {
which is part of the deployment of Airflow and trusted as per our
security policy.
https://airflow.apache.org/docs/apache-airflow/stable/security/security_model.html
They are not user provided plugins. */}
- <Iframe externalView={externalView} sandbox="allow-scripts
allow-same-origin allow-forms" />
+ <Iframe
+ externalView={externalView}
+ sandbox="allow-scripts allow-same-origin allow-forms allow-downloads"
+ />
</Box>
);
}