Skip to content

Commit c0b52a9

Browse files
match on detail for a data package filter to include github url tokens in results display (#102)
1 parent 6e4f0ef commit c0b52a9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/commands/listDataPackages.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,9 @@ async function listDataPackages(): Promise<void> {
4646
// display demo data packages
4747
const selectedDataPackage: QuickPickItem | undefined =
4848
await window.showQuickPick(dataPackageItems, {
49+
title: 'Select Data Package to View Tabular Data Resources',
4950
canPickMany: false,
50-
title: 'Select Data Package to View Tabular Data Resources'
51+
matchOnDetail: true
5152
});
5253
if (selectedDataPackage) {
5354
let dataPackageUrl: string | undefined = selectedDataPackage.detail;

0 commit comments

Comments
 (0)