Skip to content

Commit

Permalink
fix: update plugin sizing definition (#1383)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomzemp committed Jun 24, 2024
1 parent 2e7dd95 commit 266dc49
Showing 1 changed file with 6 additions and 13 deletions.
19 changes: 6 additions & 13 deletions services/plugin/src/Plugin.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -153,22 +153,15 @@ export const Plugin = ({

if (pluginEntryPoint) {
return (
<div
<iframe
ref={iframeRef}
src={pluginSource}
style={{
height: `${pluginHeight}px`,
width: `${pluginWidth}px`,
height: `${pluginHeight}px`,
border: 'none',
}}
>
<iframe
ref={iframeRef}
src={pluginSource}
style={{
width: '100%',
height: '100%',
border: 'none',
}}
></iframe>
</div>
></iframe>
)
}

Expand Down

0 comments on commit 266dc49

Please sign in to comment.