diff options
author | bobzel <zzzman@gmail.com> | 2022-04-21 15:00:31 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2022-04-21 15:00:31 -0400 |
commit | 0664b26916f656e2b898af4edab13c7b6d5a1dcc (patch) | |
tree | e7e16da65b1d7d92aaaf1b1f9c3733b2f9d61705 /src/client/views/nodes/DocumentView.tsx | |
parent | a0b30f735850d4543cf9499ebd497b9548c22e47 (diff) |
fixed issues with pile view - dragging, burst size, rendering within grid/non-freeform views, fixed timeView filtering to not keep making redundant filters,
Diffstat (limited to 'src/client/views/nodes/DocumentView.tsx')
-rw-r--r-- | src/client/views/nodes/DocumentView.tsx | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/client/views/nodes/DocumentView.tsx b/src/client/views/nodes/DocumentView.tsx index 4380cb0bc..1eaff3c1c 100644 --- a/src/client/views/nodes/DocumentView.tsx +++ b/src/client/views/nodes/DocumentView.tsx @@ -1081,9 +1081,6 @@ export class DocumentViewInternal extends DocComponent<DocumentViewInternalProps TraceMobx(); const thumb = ImageCast(this.layoutDoc["thumb-frozen"], ImageCast(this.layoutDoc.thumb))?.url.href.replace(".png", "_m.png"); const isButton = this.props.Document.type === DocumentType.FONTICON; - if (this.props.Document.title === "myicon") { - console.log(this.hidden); - } if (!(this.props.Document instanceof Doc) || GetEffectiveAcl(this.props.Document[DataSym]) === AclPrivate || this.hidden) return null; return this.docContents ?? <div className={`documentView-node${this.topMost ? "-topmost" : ""}`} |