File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
src/vs/workbench/contrib/terminal/browser Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 5
5
6
6
import { Dimension , getActiveDocument } from 'vs/base/browser/dom' ;
7
7
import { HoverPosition } from 'vs/base/browser/ui/hover/hoverWidget' ;
8
+ import { codiconsLibrary } from 'vs/base/common/codiconsLibrary' ;
8
9
import { Lazy } from 'vs/base/common/lazy' ;
9
10
import { Disposable } from 'vs/base/common/lifecycle' ;
10
11
import type { ThemeIcon } from 'vs/base/common/themables' ;
@@ -18,7 +19,7 @@ const icons = new Lazy<IconContribution[]>(() => {
18
19
const iconDefinitions = getIconRegistry ( ) . getIcons ( ) ;
19
20
const includedChars = new Set < string > ( ) ;
20
21
const dedupedIcons = iconDefinitions . filter ( e => {
21
- if ( e . id === ' blank' ) {
22
+ if ( e . id === codiconsLibrary . blank . id ) {
22
23
return false ;
23
24
}
24
25
if ( ! ( 'fontCharacter' in e . defaults ) ) {
You can’t perform that action at this time.
0 commit comments