diff options
author | anika-ahluwalia <anika.ahluwalia@gmail.com> | 2020-07-25 10:49:33 -0500 |
---|---|---|
committer | anika-ahluwalia <anika.ahluwalia@gmail.com> | 2020-07-25 10:49:33 -0500 |
commit | 8f250a359e957b01e281cfad1bd92043a2f1b165 (patch) | |
tree | 57b501cedf51ace75b34ccedeefc7e687ffd5762 /src/client/views/nodes/DocumentView.tsx | |
parent | b2ff3e5bf4892df51febf4b98e4a4bb977561392 (diff) |
merge fix
Diffstat (limited to 'src/client/views/nodes/DocumentView.tsx')
-rw-r--r-- | src/client/views/nodes/DocumentView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/DocumentView.tsx b/src/client/views/nodes/DocumentView.tsx index 85e8409d1..bb1c43e6b 100644 --- a/src/client/views/nodes/DocumentView.tsx +++ b/src/client/views/nodes/DocumentView.tsx @@ -1041,7 +1041,7 @@ export class DocumentView extends DocComponent<DocumentViewProps, Document>(Docu @computed get contents() { const pos = this.props.relative ? "relative " : "absolute"; TraceMobx(); - return (<div style={{ position: pos, width: "100%", height: "100%" }}> + return (<div style={{ width: "100%", height: "100%" }}> <DocumentContentsView key={1} docFilters={this.props.docFilters} ContainingCollectionView={this.props.ContainingCollectionView} |