@@ -70,6 +70,7 @@ import { Codicon } from 'vs/base/common/codicons';
70
70
import { restoreWalkthroughsConfigurationKey , RestoreWalkthroughsConfigurationValue } from 'vs/workbench/contrib/welcomeGettingStarted/browser/startupPage' ;
71
71
import { GettingStartedDetailsRenderer } from 'vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedDetailsRenderer' ;
72
72
import { IAccessibilityService } from 'vs/platform/accessibility/common/accessibility' ;
73
+ import { renderLabelWithIcons } from 'vs/base/browser/ui/iconLabel/iconLabels' ;
73
74
74
75
const SLIDE_TRANSITION_TIME_MS = 250 ;
75
76
const configurationKey = 'workbench.startupEditor' ;
@@ -968,7 +969,7 @@ export class GettingStartedPage extends EditorPane {
968
969
969
970
if ( category . isFeatured ) {
970
971
reset ( featuredBadge , $ ( '.featured' , { } , $ ( 'span.featured-icon.codicon.codicon-star-empty' ) ) ) ;
971
- reset ( descriptionContent , category . description ) ;
972
+ reset ( descriptionContent , ... renderLabelWithIcons ( category . description ) ) ;
972
973
}
973
974
974
975
return $ ( 'button.getting-started-category' + ( category . isFeatured ? '.featured' : '' ) ,
@@ -1237,7 +1238,7 @@ export class GettingStartedPage extends EditorPane {
1237
1238
this . iconWidgetFor ( category ) ,
1238
1239
$ ( '.category-description-container' , { } ,
1239
1240
$ ( 'h2.category-title.max-lines-3' , { 'x-category-title-for' : category . id } , category . title ) ,
1240
- $ ( '.category-description.description.max-lines-3' , { 'x-category-description-for' : category . id } , category . description ) ) ) ;
1241
+ $ ( '.category-description.description.max-lines-3' , { 'x-category-description-for' : category . id } , ... renderLabelWithIcons ( category . description ) ) ) ) ;
1241
1242
1242
1243
const stepListContainer = $ ( '.step-list-container' ) ;
1243
1244
0 commit comments