File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed
src/wizards/generateProject Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -219,9 +219,16 @@ export class ExtensionsPicker {
219
219
}
220
220
221
221
items = items . concat ( this . selectedExtensions . concat ( this . unselectedExtensions ) . map ( ( it : QExtension ) => {
222
+ let description : string ;
223
+ if ( this . showDescription ) {
224
+ description = ( it . isRequired ? ' (This is a required extension)' : ` (${ it . groupId } :${ it . artifactId } )` ) ;
225
+ } else {
226
+ description = it . category ;
227
+ }
228
+
222
229
const quickPickItem : QuickPickExtensionItem = {
223
230
type : Type . Extension ,
224
- description : it . category + ( it . isRequired ? ' - (This is a required extension)' : '' ) ,
231
+ description,
225
232
label : `${ this . isSelected ( it ) ? '$(check) ' : '' } ${ it . name } ` ,
226
233
extension : it
227
234
} ;
You can’t perform that action at this time.
0 commit comments