From 85911cbc2629353f5a84eec327f91410f5b83a49 Mon Sep 17 00:00:00 2001 From: Christian Zheng <czheng@takima.fr> Date: Mon, 9 May 2022 17:22:50 +0200 Subject: [PATCH] fix(command): fix command name compilation error --- deadlock-plugins/deadlock-extension/src/core/controller.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deadlock-plugins/deadlock-extension/src/core/controller.ts b/deadlock-plugins/deadlock-extension/src/core/controller.ts index bb205d13..633a1753 100644 --- a/deadlock-plugins/deadlock-extension/src/core/controller.ts +++ b/deadlock-plugins/deadlock-extension/src/core/controller.ts @@ -6,7 +6,7 @@ import { REGISTRY_MISSION_URL, } from '../config'; import { log } from '../recorder/utils'; -import { OPEN_GETTING_STARTED_COMMAND } from '../theia/command'; +import { OPEN_QUICK_SETUP_COMMAND } from '../theia/command'; import BriefingView from '../view/briefingView'; import QuickSetupView from '../view/quickSetupView'; import { CHOOSE_MISSION_WORKDIR_COMMAND, CommandHandler, OPEN_URL_IN_BROWSER_COMMAND } from './commandHandler'; @@ -123,7 +123,7 @@ export default class Controller { await mission.setup({}); await mission.openEditorInFolder(); - vscode.commands.executeCommand(OPEN_GETTING_STARTED_COMMAND.cmd); + vscode.commands.executeCommand(OPEN_QUICK_SETUP_COMMAND.cmd); } } } -- GitLab