diff options
Diffstat (limited to 'editors/code')
-rw-r--r-- | editors/code/src/commands.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/src/commands.ts b/editors/code/src/commands.ts index 3ae995705..c21e5597c 100644 --- a/editors/code/src/commands.ts +++ b/editors/code/src/commands.ts | |||
@@ -190,7 +190,7 @@ export function ssr(ctx: Ctx): Cmd { | |||
190 | if (!editor || !client) return; | 190 | if (!editor || !client) return; |
191 | 191 | ||
192 | const position = editor.selection.active; | 192 | const position = editor.selection.active; |
193 | let textDocument = { uri: editor.document.uri.toString() }; | 193 | const textDocument = { uri: editor.document.uri.toString() }; |
194 | 194 | ||
195 | const options: vscode.InputBoxOptions = { | 195 | const options: vscode.InputBoxOptions = { |
196 | value: "() ==>> ()", | 196 | value: "() ==>> ()", |