Skip to content

Commit

Permalink
Merge pull request #66 from MoMI-G/fix_margin
Browse files Browse the repository at this point in the history
Fix margin bottom
  • Loading branch information
6br committed Feb 25, 2021
2 parents 6717796 + 3afe062 commit 046a0a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,15 @@ class App extends React.Component<{}, { showModal: boolean }> {
const parsedHash = QueryString.parse(window.parent.location.hash.slice(1));
const postext = parsedHash.path
? parsedHash.path
: 'chr12:80,851,974-80,853,202';
: process.env.DEFAULT_POS ? process.env.DEFAULT_POS : 'chr12:80,851,974-80,853,202';
const uuid = parsedHash.uuid;
const layout = parsedHash.layout ? Number(parsedHash.layout) : 0;
const reference = parsedHash.ref ? parsedHash.ref : 'hg19';
const subPath = parsedHash.annotations
? parsedHash.annotations === 'false' ? false : true
: true;
return (
<div className="App">
<div className="App" style={{ marginBottom: '130px' }}>
<DashBoard
posText={postext}
uuid={uuid}
Expand Down

0 comments on commit 046a0a3

Please sign in to comment.