浏览代码

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%"
                 height="100%"
                 src={`${this.props.url}`}
                 src={`${this.props.url}`}
                 frameBorder="0"
                 frameBorder="0"
-                sandbox=""
+                sandbox="allow-scripts"
               />
               />
             </div>
             </div>
           )}
           )}