Collapse all except the first sidebar category by default (#5)

* Collapse all except the first sidebar category by default

* Explanatory comment
This commit is contained in:
fj-msft 2020-07-27 09:13:47 -05:00 коммит произвёл GitHub
Родитель a9f78168c7
Коммит 3677c48bc2
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -71,10 +71,13 @@ export const ItemPanel: React.FunctionComponent<IProps> = (props) => {
category.title = Localizer.l(category.searchKeys[0] as string);
return {
...category,
expanded: false,
children,
};
}
);
// collapse all except first by default
treeNodes[0].expanded = true;
setTreeData(treeNodes);
}