diff --git a/airflow-core/src/airflow/ui/src/pages/Iframe.tsx b/airflow-core/src/airflow/ui/src/pages/Iframe.tsx
index 9256a463b08b9..b6e3aa00cc911 100644
--- a/airflow-core/src/airflow/ui/src/pages/Iframe.tsx
+++ b/airflow-core/src/airflow/ui/src/pages/Iframe.tsx
@@ -44,10 +44,14 @@ export const Iframe = () => {
return ;
}
+ // The following iframe sandbox setting is intentionally less restrictive.
+ // ONLY trusted contents can be framed within Iframe.
+ const sandbox = "allow-same-origin allow-forms";
+
return (