瀏覽代碼

fix: allow scripts on iframes

Konstantinos Kaloutas 3 年之前
父節點
當前提交
9e5df347c6
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      tldraw/apps/tldraw-logseq/src/lib/shapes/IFrameShape.tsx

+ 1 - 1
tldraw/apps/tldraw-logseq/src/lib/shapes/IFrameShape.tsx

@@ -67,7 +67,7 @@ export class IFrameShape extends TLBoxShape<IFrameShapeProps> {
                 height="100%"
                 src={`${this.props.url}`}
                 frameBorder="0"
-                sandbox=""
+                sandbox="allow-scripts"
               />
             </div>
           )}