This commit is contained in:
Gordon
2021-04-07 21:25:57 +01:00
parent 63bf065331
commit a26d1ba7c0
6 changed files with 594 additions and 500 deletions

View File

@ -42,9 +42,9 @@ export async function activate(context: vscode.ExtensionContext) {
name: newProjectName
});
vscode.window.showInformationMessage(`Initialised kanbn project '${newProjectName}'.`);
kanbnStatusBarItem.update();
KanbnBoardPanel.update();
}
kanbnStatusBarItem.update();
}));
// Register a command to open the kanbn board. This command will be invoked when the status bar item is clicked
@ -72,6 +72,7 @@ export async function activate(context: vscode.ExtensionContext) {
} else {
vscode.window.showErrorMessage('You need to initialise kanbn before viewing the kanbn board.');
}
kanbnStatusBarItem.update();
}));
// Register a command to add a new kanbn task.