Skip to content

Commit 4b43b9a

Browse files
authored
Use ✓ for db item selection (#1890)
1 parent 6350ac7 commit 4b43b9a

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

extensions/ql-vscode/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -369,8 +369,7 @@
369369
},
370370
{
371371
"command": "codeQLDatabasesExperimental.setSelectedItem",
372-
"title": "Select Item",
373-
"icon": "$(circle-small-filled)"
372+
"title": ""
374373
},
375374
{
376375
"command": "codeQLDatabases.chooseDatabaseFolder",

extensions/ql-vscode/src/databases/ui/db-selection-decoration-provider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export class DbSelectionDecorationProvider implements FileDecorationProvider {
1313
): ProviderResult<FileDecoration> {
1414
if (uri?.query === "selected=true") {
1515
return {
16-
badge: "",
16+
badge: "",
1717
tooltip: "Currently selected",
1818
};
1919
}

0 commit comments

Comments
 (0)