Skip to content

Commit

Permalink
Disable highlighting gutter
Browse files Browse the repository at this point in the history
  • Loading branch information
kgabryje committed Apr 3, 2022
1 parent eb272fa commit af4d630
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,10 @@ export const SQLPopover = (props: PopoverProps & { sqlExpression: string }) => {
mode="sql"
value={props.sqlExpression}
editorProps={{ $blockScrolling: true }}
setOptions={{ highlightActiveLine: false }}
setOptions={{
highlightActiveLine: false,
highlightGutterLine: false,
}}
minLines={2}
maxLines={6}
readOnly
Expand Down

0 comments on commit af4d630

Please sign in to comment.