From da18dfbc5515d4c7c541cee009798be16f022ad9 Mon Sep 17 00:00:00 2001 From: dali <dali@takima.fr> Date: Wed, 20 Jul 2022 14:36:07 +0200 Subject: [PATCH] feat: remove the duplicate description of the teacher's commands --- deadlock-plugins/deadlock-extension/src/view/CommandTree.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deadlock-plugins/deadlock-extension/src/view/CommandTree.ts b/deadlock-plugins/deadlock-extension/src/view/CommandTree.ts index e172e422..8fdfd7b7 100644 --- a/deadlock-plugins/deadlock-extension/src/view/CommandTree.ts +++ b/deadlock-plugins/deadlock-extension/src/view/CommandTree.ts @@ -67,7 +67,7 @@ class CommandItem extends TreeItem { super(missionCommand.name); missionCommand.type = missionCommand.type ?? 'run'; this.tooltip = missionCommand.description ?? missionCommand.name; - this.description = missionCommand.description ?? missionCommand.name; + this.description = missionCommand.description; this._isRunning = false; this.iconPath = new ThemeIcon( 'notebook-execute', -- GitLab