diff --git a/CHANGELOG.md b/CHANGELOG.md
index 7b378560c5..fd2c44948c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -11,6 +11,8 @@ You can also check the
## Unreleased
+- Features
+ - Added dynamic iframe resize support for LivingDocs
- Fix
- Clicking on Y axis title in bar charts now open Data tab in the details
panels, as in other chart types
diff --git a/app/pages/embed/[chartId].tsx b/app/pages/embed/[chartId].tsx
index 6780748240..832ba2ed4a 100644
--- a/app/pages/embed/[chartId].tsx
+++ b/app/pages/embed/[chartId].tsx
@@ -2,6 +2,8 @@ import { Config as PrismaConfig } from "@prisma/client";
import "iframe-resizer/js/iframeResizer.contentWindow.js";
import { GetServerSideProps } from "next";
import ErrorPage from "next/error";
+import Head from "next/head";
+import Script from "next/script";
import { ChartPublished } from "@/components/chart-published";
import { useEmbedQueryParams } from "@/components/embed-params";
@@ -60,12 +62,24 @@ const EmbedPage = (props: PageProps) => {
} = props;
return (
-