File tree 1 file changed +10
-10
lines changed
arduino-ide-extension/src/browser/boards
1 file changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -237,6 +237,16 @@ export class BoardsAutoInstaller implements FrontendApplicationContribution {
237
237
) ;
238
238
239
239
const actions : AutoInstallPromptActions = [
240
+ {
241
+ key : manualInstall ,
242
+ handler : ( ) => {
243
+ this . boardsManagerFrontendContribution
244
+ . openView ( { reveal : true } )
245
+ . then ( ( widget ) =>
246
+ widget . refresh ( candidate . name . toLocaleLowerCase ( ) )
247
+ ) ;
248
+ } ,
249
+ } ,
240
250
{
241
251
isAcceptance : true ,
242
252
key : yes ,
@@ -250,16 +260,6 @@ export class BoardsAutoInstaller implements FrontendApplicationContribution {
250
260
} ) ;
251
261
} ,
252
262
} ,
253
- {
254
- key : manualInstall ,
255
- handler : ( ) => {
256
- this . boardsManagerFrontendContribution
257
- . openView ( { reveal : true } )
258
- . then ( ( widget ) =>
259
- widget . refresh ( candidate . name . toLocaleLowerCase ( ) )
260
- ) ;
261
- } ,
262
- } ,
263
263
] ;
264
264
265
265
return actions ;
You can’t perform that action at this time.
0 commit comments