diff options
| author | bobzel <zzzman@gmail.com> | 2020-12-13 20:49:48 -0500 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2020-12-13 20:49:48 -0500 |
| commit | f9f0d6ca06e850e0ea68d7b7b701de46d9449169 (patch) | |
| tree | ae7c6eeb2f4ad37c1ef0b5235952d9da6ece308e /src/client/views/collections | |
| parent | 9af7025b7c9e6181843594f5179166556041234c (diff) | |
trying to fix PDFs for fitWidth and otherwise in ContentFitting and CollectionFreeFormDoc containers.
Diffstat (limited to 'src/client/views/collections')
| -rw-r--r-- | src/client/views/collections/TabDocView.tsx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/client/views/collections/TabDocView.tsx b/src/client/views/collections/TabDocView.tsx index 40e7bc7ce..65b793adb 100644 --- a/src/client/views/collections/TabDocView.tsx +++ b/src/client/views/collections/TabDocView.tsx @@ -373,7 +373,6 @@ export class TabDocView extends React.Component<TabDocViewProps> { @computed get layerProvider() { return this._document && DefaultLayerProvider(this._document); } @computed get docView() { TraceMobx(); - console.log("" + this._document?.title + " " + (!this._activated || !this._document || this._document._viewType === CollectionViewType.Docking)) return !this._activated || !this._document || this._document._viewType === CollectionViewType.Docking ? (null) : <><ContentFittingDocumentView key={this._document[Id]} ref={action((r: ContentFittingDocumentView) => console.log(this._view = r))} renderDepth={0} @@ -411,7 +410,6 @@ export class TabDocView extends React.Component<TabDocViewProps> { } render() { - console.log("tab", this._document) return ( <div className="collectionDockingView-content" style={{ height: "100%", width: "100%" }} ref={ref => { if (this._mainCont = ref) { |
