Skip to content

Commit

Permalink
Update QueryEditor.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
Amit-Hora authored and nineinchnick committed Nov 3, 2023
1 parent cca7ba7 commit 27987e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/QueryEditor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ export function QueryEditor(props: Props) {
<FormatSelect
query={props.query}
options={SelectableFormatOptions}
onChange={props.onChange}
onChange={() => []}
onRunQuery={props.onRunQuery}
/>
</div>
<div style={{ minWidth: '400px', marginLeft: '10px', flex: 1 }}>
<QueryCodeEditor
language="sql"
query={queryWithDefaults}
onChange={props.onChange}
onChange={() => []}
onRunQuery={props.onRunQuery}
getSuggestions={() => []}
/>
Expand Down

0 comments on commit 27987e4

Please sign in to comment.