Skip to content

Commit

Permalink
fix(vscode): proper icon for boolean literals
Browse files Browse the repository at this point in the history
  • Loading branch information
mxsdev committed Oct 27, 2022
1 parent f078045 commit 1d3a021
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/typescript-explorer-vscode/src/view/typeTreeView.ts
Expand Up @@ -361,6 +361,10 @@ function getMeta(info: LocalizedTypeInfo): TypeTreeItemMeta {
return ["symbol-number"]
}

case "boolean_literal": {
return ["symbol-boolean"]
}

case "enum": {
return ["symbol-enum"]
}
Expand Down

0 comments on commit 1d3a021

Please sign in to comment.