diff options
author | anika <anika.ahluwalia@gmail.com> | 2020-12-31 10:41:37 -0600 |
---|---|---|
committer | anika <anika.ahluwalia@gmail.com> | 2020-12-31 10:41:37 -0600 |
commit | d16a3e3ce298b542cbb2416319c462efaafa191f (patch) | |
tree | bb268a8f7a83ec809f089f1318a36239147dee76 /src/client/views/collections/TreeView.tsx | |
parent | 7174328702fe6b350780728db890141f50ceec5b (diff) | |
parent | 319e0a27805c504595f43591353c1ee009aa51d1 (diff) |
merge and fix
Diffstat (limited to 'src/client/views/collections/TreeView.tsx')
-rw-r--r-- | src/client/views/collections/TreeView.tsx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/client/views/collections/TreeView.tsx b/src/client/views/collections/TreeView.tsx index b5e498503..2f9a2f3eb 100644 --- a/src/client/views/collections/TreeView.tsx +++ b/src/client/views/collections/TreeView.tsx @@ -441,7 +441,9 @@ export class TreeView extends React.Component<TreeViewProps> { @computed get renderBullet() { TraceMobx(); - const iconType = this.titleStyleProvider?.(this.doc, this.props.treeView.props, StyleProp.TreeViewIcon); + const iconType = Doc.toIcon(this.doc); + + //const iconType = this.titleStyleProvider?.(this.doc, this.props.treeView.props, StyleProp.TreeViewIcon); // const footerDecoration = this.titleStyleProvider?.(this.doc, this.props.treeView.props, StyleProp.Decoration + ":footer"); |