We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d5381b commit 0f82e91Copy full SHA for 0f82e91
arduino-ide-extension/src/browser/boards/boards-auto-installer.ts
@@ -44,9 +44,10 @@ export class BoardsAutoInstaller implements FrontendApplicationContribution {
44
}
45
46
protected ensureCoreExists(config: BoardsConfig.Config): void {
47
- const { selectedBoard } = config;
+ const { selectedBoard, selectedPort } = config;
48
if (
49
selectedBoard &&
50
+ selectedPort &&
51
!this.notifications.find((board) => Board.sameAs(board, selectedBoard))
52
) {
53
this.notifications.push(selectedBoard);
0 commit comments