mirror of
https://github.com/silvanocerza/github-gitless-sync.git
synced 2026-07-22 12:10:28 +00:00
Fix editor height
This commit is contained in:
parent
b5ebe4a638
commit
fd7cffffab
1 changed files with 4 additions and 0 deletions
|
|
@ -51,8 +51,12 @@ const EditorPane: React.FC<EditorPaneProps> = (props) => {
|
|||
return (
|
||||
<CodeMirror
|
||||
value={content}
|
||||
style={{
|
||||
height: "100%",
|
||||
}}
|
||||
theme={"none"}
|
||||
width={"100%"}
|
||||
height={"100%"}
|
||||
basicSetup={false}
|
||||
extensions={extensions}
|
||||
onChange={(value: string) => {
|
||||
|
|
|
|||
Loading…
Reference in a new issue