diff options
author | Mohammad Amoush <mohammad_amoush@brown.edu> | 2019-07-29 20:43:18 -0400 |
---|---|---|
committer | Mohammad Amoush <mohammad_amoush@brown.edu> | 2019-07-29 20:43:18 -0400 |
commit | c4a8b656eff910fb6c2cd1693308f0b948547cb0 (patch) | |
tree | 6188e398b7a34b331dd62665542015b3ef54985d /src/client/views/MainView.tsx | |
parent | 19ae7ac4996436bb88fc19991895619eab113c8f (diff) |
Opening as a tab if not present as default instead of open right
Diffstat (limited to 'src/client/views/MainView.tsx')
-rw-r--r-- | src/client/views/MainView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/MainView.tsx b/src/client/views/MainView.tsx index 0f9f2687b..91c8fe57c 100644 --- a/src/client/views/MainView.tsx +++ b/src/client/views/MainView.tsx @@ -277,7 +277,7 @@ export class MainView extends React.Component { zoomToScale={emptyFunction} getScale={returnOne} />} - {castRes ? <PresentationView addDocTab={this.addDocTabFunc} Documents={castRes} key="presentation" /> : null} + {castRes ? <PresentationView Documents={castRes} key="presentation" /> : null} </div> } </Measure>; |