File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
debugger/extension/attachQuickPick Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -10,9 +10,9 @@ import { EXTENSION_ROOT_DIR } from '../../constants';
10
10
const darkIconsPath = path . join ( EXTENSION_ROOT_DIR , 'resources' , 'dark' ) ;
11
11
const lightIconsPath = path . join ( EXTENSION_ROOT_DIR , 'resources' , 'light' ) ;
12
12
13
- export function getIcon ( fileName : string ) : { light : string | Uri ; dark : string | Uri } {
13
+ export function getIcon ( fileName : string ) : { light : Uri ; dark : Uri } {
14
14
return {
15
- dark : path . join ( darkIconsPath , fileName ) ,
16
- light : path . join ( lightIconsPath , fileName )
15
+ dark : Uri . file ( path . join ( darkIconsPath , fileName ) ) ,
16
+ light : Uri . file ( path . join ( lightIconsPath , fileName ) )
17
17
} ;
18
18
}
Original file line number Diff line number Diff line change @@ -75,7 +75,6 @@ export class AttachPicker implements IAttachPicker {
75
75
) ;
76
76
77
77
quickPick . show ( ) ;
78
- quickPick . show ( ) ;
79
78
} ) ;
80
79
}
81
80
}
You can’t perform that action at this time.
0 commit comments