Skip to content

Commit

Permalink
Remove invalid reference
Browse files Browse the repository at this point in the history
  • Loading branch information
worksofliam authored May 9, 2023
1 parent 699c4ca commit 83248c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/results/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ export function initialise(context: vscode.ExtensionContext) {

} else {
const scrollingEnabled = Configuration.get(`scrollingResultSet`);
if (scrollingEnabled && statement.type === `statement` && this.isBasicStatement(statement.content)) {
if (scrollingEnabled && statement.type === `statement` && isBasicStatement(statement.content)) {
// If it's a basic statement, we can let it scroll!
resultSetProvider.setScrolling(statement.content);

Expand Down

0 comments on commit 83248c8

Please sign in to comment.