Skip to content

Commit

Permalink
Revert "Update QueryEditor.tsx"
Browse files Browse the repository at this point in the history
This reverts commit 27987e4.
  • Loading branch information
nineinchnick committed Dec 5, 2023
1 parent 5c6712e commit 7739431
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={() => []}
onChange={props.onChange}
onRunQuery={props.onRunQuery}
/>
</div>
<div style={{ minWidth: '400px', marginLeft: '10px', flex: 1 }}>
<QueryCodeEditor
language="sql"
query={queryWithDefaults}
onChange={() => []}
onChange={props.onChange}
onRunQuery={props.onRunQuery}
getSuggestions={() => []}
/>
Expand Down

0 comments on commit 7739431

Please sign in to comment.