Skip to content

Commit 0e28aa1

Browse files
committed
Close -> Dismiss
1 parent d97ef2c commit 0e28aa1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/extension.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -269,12 +269,12 @@ export function activate(context: vscode.ExtensionContext) {
269269
if (!isfsExtension.isActive) {
270270
await isfsExtension.activate();
271271
if (!isfsExtension.isActive) {
272-
vscode.window.showErrorMessage(`${OBJECTSCRIPT_EXTENSIONID} could not be activated.`, "Close");
272+
vscode.window.showErrorMessage(`${OBJECTSCRIPT_EXTENSIONID} could not be activated.`, "Dismiss");
273273
return;
274274
}
275275
}
276276
} else {
277-
vscode.window.showErrorMessage(`${OBJECTSCRIPT_EXTENSIONID} is not installed.`, "Close");
277+
vscode.window.showErrorMessage(`${OBJECTSCRIPT_EXTENSIONID} is not installed.`, "Dismiss");
278278
return;
279279
}
280280

@@ -291,7 +291,7 @@ export function activate(context: vscode.ExtensionContext) {
291291
if (added) {
292292
await view.addToRecents(serverName);
293293
} else {
294-
vscode.window.showErrorMessage(`Folder ${uri.toString()} could not be added.`, "Close");
294+
vscode.window.showErrorMessage(`Folder ${uri.toString()} could not be added.`, "Dismiss");
295295
}
296296
}
297297
// Switch to Explorer view and focus on the folder

0 commit comments

Comments
 (0)