Skip to content

Commit

Permalink
πŸ› fix monaco editor height
Browse files Browse the repository at this point in the history
  • Loading branch information
jxnkwlp committed Jun 14, 2023
1 parent d977ff6 commit 4b15484
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const MonacoEditor: React.FC<MonacoEditorProps> = (props) => {
};

return (
<div className={border ? 'monaco-editor-container' : ''}>
<div className={border ? 'monaco-editor-container' : ''} style={{ height: '100%' }}>
<Editor
width={width}
height={height}
Expand Down

0 comments on commit 4b15484

Please sign in to comment.