Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
benjackwhite committed Nov 14, 2023
1 parent abc4c7a commit 284c936
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/scenes/notebooks/Nodes/NotebookNodeEmbed.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ const Component = ({ attributes }: NotebookNodeProps<NotebookNodeEmbedAttributes
return (
<>
{validUrl ? (
<iframe className="w-full h-full" src={validUrl.toString()} />
<iframe className="w-full h-full" src={validUrl.toString()} allowFullScreen />
) : (
<div className="flex-1 flex flex-col justify-center items-center">
{src ? <p>The given URL is not valid.</p> : <p>No URL configured</p>}
Expand Down

0 comments on commit 284c936

Please sign in to comment.