Skip to content

Commit

Permalink
ZKUI-163: Enhance editor typing
Browse files Browse the repository at this point in the history
  • Loading branch information
JBWatenbergScality committed Jul 1, 2022
1 parent cf44b74 commit a4f6b16
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/react/ui-elements/Editor.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react';
import MonacoEditor from '@monaco-editor/react';
import MonacoEditor, { EditorProps } from '@monaco-editor/react';

type Props = {
width?: string;
Expand All @@ -8,7 +8,7 @@ type Props = {
value?: string;
readOnly?: boolean;
onChange: (data: React.ChangeEvent) => void;
};
} & EditorProps;

const Editor = ({
height,
Expand Down

0 comments on commit a4f6b16

Please sign in to comment.