diff options
author | geireann <60007097+geireann@users.noreply.github.com> | 2021-08-20 15:12:14 -0400 |
---|---|---|
committer | geireann <60007097+geireann@users.noreply.github.com> | 2021-08-20 15:12:14 -0400 |
commit | c9a3d98b57482343332a19f52ab90bcecc170f69 (patch) | |
tree | 0eaf73c62a56dc03d99b0a552c440a1948db254e /src/client/views/collections/collectionLinearView/CollectionLinearView.tsx | |
parent | bc85d593a085b25b21bbb641937f34d0ce3956b4 (diff) |
undo/redo buttons fix
Diffstat (limited to 'src/client/views/collections/collectionLinearView/CollectionLinearView.tsx')
-rw-r--r-- | src/client/views/collections/collectionLinearView/CollectionLinearView.tsx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/client/views/collections/collectionLinearView/CollectionLinearView.tsx b/src/client/views/collections/collectionLinearView/CollectionLinearView.tsx index 75fbbf234..48f50cf2d 100644 --- a/src/client/views/collections/collectionLinearView/CollectionLinearView.tsx +++ b/src/client/views/collections/collectionLinearView/CollectionLinearView.tsx @@ -115,7 +115,6 @@ export class CollectionLinearView extends CollectionSubView(LinearDocument) { const backgroundColor = this.props.styleProvider?.(this.rootDoc, this.props, StyleProp.BackgroundColor); const color = this.props.styleProvider?.(this.rootDoc, this.props, StyleProp.Color); const icon: string = StrCast(this.props.Document.icon); // Menu opener toggle - console.log("[flexGap]: " + flexGap); const menuOpener = <label htmlFor={`${guid}`} style={{ color: BoolCast(this.layoutDoc.linearViewIsExpanded) ? undefined : Colors.BLACK, @@ -145,7 +144,6 @@ export class CollectionLinearView extends CollectionSubView(LinearDocument) { const nested = pair.layout._viewType === CollectionViewType.Linear; const dref = React.createRef<HTMLDivElement>(); // const scalable = pair.layout.onClick || pair.layout.onDragStart; - console.log("Height:" + NumCast(pair.layout._height)); return <div className={`collectionLinearView-docBtn`} key={pair.layout[Id]} ref={dref} style={{ pointerEvents: "all", |