Skip to content

Commit

Permalink
Merge pull request #12 from projkov/9-remove-minimap-fhirpath-editor
Browse files Browse the repository at this point in the history
Remove minimap
  • Loading branch information
projkov authored Jul 17, 2024
2 parents 7304955 + 557e479 commit 6159e8b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,11 @@ const App: React.FC = () => {
<div style={{ height: '100vh' }}>
<Allotment defaultSizes={[100, 300]} vertical>
<div className='editorWrapper'>
<Editor defaultLanguage="ruby" value={expression} onChange={(value) => setExpression(value as string)} options={{ formatOnPaste: true, formatOnType: true }} />
<Editor defaultLanguage="ruby" value={expression} onChange={(value) => setExpression(value as string)} options={{
formatOnPaste: true, formatOnType: true, minimap: {
enabled: false,
},
}} />
</div>
<ResultOutput resultItems={result} />
</Allotment>
Expand Down

0 comments on commit 6159e8b

Please sign in to comment.