aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/TreeView.tsx
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2023-08-31 12:36:33 -0400
committerbobzel <zzzman@gmail.com>2023-08-31 12:36:33 -0400
commit5651f5428f8464ae0f131c73601b69aba11dff98 (patch)
treed214438478341dfe9183ac7a412f5cb13820010a /src/client/views/collections/TreeView.tsx
parentd9609e3140ce481942e7de575751857c5774531d (diff)
fixed properties view text colors
Diffstat (limited to 'src/client/views/collections/TreeView.tsx')
-rw-r--r--src/client/views/collections/TreeView.tsx3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/client/views/collections/TreeView.tsx b/src/client/views/collections/TreeView.tsx
index 4f9310434..8dd1c8ee8 100644
--- a/src/client/views/collections/TreeView.tsx
+++ b/src/client/views/collections/TreeView.tsx
@@ -227,7 +227,6 @@ export class TreeView extends React.Component<TreeViewProps> {
recurToggle = (childList: Doc[]) => {
if (childList.length > 0) {
childList.forEach(child => {
- console.log(child);
child.runProcess = !!!child.runProcess;
TreeView.ToggleChildrenRun.get(child)?.();
});
@@ -265,8 +264,6 @@ export class TreeView extends React.Component<TreeViewProps> {
this._editTitleScript = Doc.IsSystem(this.props.document) ? () => TreeView._openLevelScript! : () => TreeView._openTitleScript!;
// set for child processing highligting
- // this.dataDoc.testing = 'testing';
- console.log(this.doc, this.dataDoc, this.childDocs);
this.dataDoc.hasChildren = this.childDocs.length > 0;
// this.dataDoc.children = this.childDocs;
TreeView.ToggleChildrenRun.set(this.doc, () => {