detail all the way

This commit is contained in:
Johannes Rieken
2016-01-14 10:06:31 +01:00
parent 8f3d4293ba
commit 1c73dd5caf
4 changed files with 20 additions and 20 deletions

View File

@@ -51,20 +51,20 @@ export class ExtHostQuickOpen {
let item = items[handle];
let label: string;
let description: string;
let meta: string;
let detail: string;
if (typeof item === 'string') {
label = item;
} else {
label = item.label;
description = item.description;
meta = item.detail;
detail = item.detail;
}
pickItems.push({
label,
description,
handle,
meta
detail
});
}