Skip to content

Commit

Permalink
admin collapsed by default
Browse files Browse the repository at this point in the history
  • Loading branch information
muremwa committed Oct 8, 2020
1 parent 6121abc commit f2b6476
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion treeProvider.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class TreeItem extends vscode.TreeItem {
let collapsedTreeOrNot, labelToFeed, contextValue, tooltip;

if (treeType === trees.APP) {
collapsedTreeOrNot = vscode.TreeItemCollapsibleState.Expanded;
collapsedTreeOrNot = label === 'admin'? vscode.TreeItemCollapsibleState.Collapsed: vscode.TreeItemCollapsibleState.Expanded;
contextValue = 'app';

if (label.includes('READER_FILE_PATH')) {
Expand Down

0 comments on commit f2b6476

Please sign in to comment.