Closes #105667 - finalizes treeview description

This commit is contained in:
Eric Amodio
2020-09-23 15:56:37 -04:00
parent d4ae4a64ec
commit eabb747d82
3 changed files with 6 additions and 13 deletions

View File

@@ -102,11 +102,9 @@ export class ExtHostTreeViews implements ExtHostTreeViewsShape {
treeView.title = title;
},
get description() {
checkProposedApiEnabled(extension);
return treeView.description;
},
set description(description: string | undefined) {
checkProposedApiEnabled(extension);
treeView.description = description;
},
reveal: (element: T, options?: IRevealOptions): Promise<void> => {