diff options
| author | bobzel <zzzman@gmail.com> | 2023-09-19 16:28:40 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2023-09-19 16:28:40 -0400 |
| commit | c9ce658d193d5e8ec4161c31bc60c499ada1b8b7 (patch) | |
| tree | 68f64894cdce6200074bfc59e1f9885272a3fce0 /src/client/views/collections/TreeView.tsx | |
| parent | 8c8bbfe3ac8e17f9716abaf4560f6490538dc004 (diff) | |
fixed tree view hierarchy opening icons
Diffstat (limited to 'src/client/views/collections/TreeView.tsx')
| -rw-r--r-- | src/client/views/collections/TreeView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/TreeView.tsx b/src/client/views/collections/TreeView.tsx index 832e102bc..cd526c77e 100644 --- a/src/client/views/collections/TreeView.tsx +++ b/src/client/views/collections/TreeView.tsx @@ -761,7 +761,7 @@ export class TreeView extends React.Component<TreeViewProps> { <IconButton color={color} icon={<FontAwesomeIcon icon={[this.childDocs?.length && !this.treeViewOpen ? 'fas' : 'far', 'circle']} />} size={Size.XSMALL} /> ) ) : ( - <div className="treeView-bulletIcons" style={{ color: Doc.IsSystem(DocCast(this.doc.proto)) ? 'red' : undefined }}> + <div className="treeView-bulletIcons"> <div className={`treeView-${this.onCheckedClick ? 'checkIcon' : 'expandIcon'}`}> <FontAwesomeIcon size="sm" |
