@@ -7,10 +7,9 @@ import {
7
7
Board ,
8
8
} from '../../common/protocol/boards-service' ;
9
9
import { BoardsServiceProvider } from './boards-service-provider' ;
10
- import { BoardsListWidgetFrontendContribution } from './boards-widget-frontend-contribution' ;
11
10
import { BoardsConfig } from './boards-config' ;
12
- import { Installable } from '../../common/protocol' ;
13
- import { ResponseServiceImpl } from '../response-service-impl ' ;
11
+ import { Installable , ResponseServiceArduino } from '../../common/protocol' ;
12
+ import { BoardsListWidgetFrontendContribution } from './boards-widget-frontend-contribution ' ;
14
13
15
14
/**
16
15
* Listens on `BoardsConfig.Config` changes, if a board is selected which does not
@@ -27,8 +26,8 @@ export class BoardsAutoInstaller implements FrontendApplicationContribution {
27
26
@inject ( BoardsServiceProvider )
28
27
protected readonly boardsServiceClient : BoardsServiceProvider ;
29
28
30
- @inject ( ResponseServiceImpl )
31
- protected readonly responseService : ResponseServiceImpl ;
29
+ @inject ( ResponseServiceArduino )
30
+ protected readonly responseService : ResponseServiceArduino ;
32
31
33
32
@inject ( BoardsListWidgetFrontendContribution )
34
33
protected readonly boardsManagerFrontendContribution : BoardsListWidgetFrontendContribution ;
@@ -106,7 +105,7 @@ export class BoardsAutoInstaller implements FrontendApplicationContribution {
106
105
} ) ;
107
106
return ;
108
107
}
109
- if ( answer ) {
108
+ if ( answer === 'Install Manually' ) {
110
109
this . boardsManagerFrontendContribution
111
110
. openView ( { reveal : true } )
112
111
. then ( ( widget ) =>
0 commit comments