Ver código fonte

fix: allow scripts on iframes

Konstantinos Kaloutas 3 anos atrás
pai
commit
9e5df347c6

+ 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>
           )}