Skip to content

Commit 5db8e5c

Browse files
committed
Rename schema browser file
Signed-off-by: worksofliam <[email protected]>
1 parent b35adf8 commit 5db8e5c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/extension.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// The module 'vscode' contains the VS Code extensibility API
22
// Import the module and reference it with the alias vscode in your code below
33
import vscode from "vscode"
4-
import schemaBrowser from "./views/schemaBrowser/schemaBrowser";
4+
import schemaBrowser from "./views/schemaBrowser";
55

66
import * as JSONServices from "./language/json";
77
import * as resultsProvider from "./views/results";

src/views/schemaBrowser/schemaBrowser.ts renamed to src/views/schemaBrowser/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -360,8 +360,8 @@ export default class schemaBrowser {
360360
const value = await vscode.window.showInputBox({
361361
title: `Set filter for ${node.schema}`,
362362
value: this.filters[node.schema],
363-
placeHolder: `COOL_IEW, COOL*, COOL\\_, etc`,
364-
prompt: `Show objects that contain this value (case-insensitive). Blank to reset. When using '_', escape it with '${SQL_ESCAPE_CHAR}'. Use '*' for wildcard at end.`,
363+
placeHolder: `COOL, COOL*`,
364+
prompt: `Show objects that contain this value (case-insensitive). Blank to reset. Use '*' for wildcard at end.`,
365365
});
366366

367367
if (value !== undefined) {

0 commit comments

Comments
 (0)