Rebase fix

This commit is contained in:
Jori Lallo
2017-05-29 18:22:10 -07:00
parent 201f90030c
commit 5a82430553
2 changed files with 3 additions and 2 deletions

View File

@ -32,6 +32,7 @@ const DocumentLink = styled(Link)`
} }
`; `;
// $FlowIssue
const TruncatedMarkdown = styled(Markdown)` const TruncatedMarkdown = styled(Markdown)`
pointer-events: none; pointer-events: none;
`; `;

View File

@ -9,7 +9,7 @@ import CollectionsStore from 'stores/CollectionsStore';
import Layout from 'components/Layout'; import Layout from 'components/Layout';
import CenteredContent from 'components/CenteredContent'; import CenteredContent from 'components/CenteredContent';
import AtlasPreviewLoading from 'components/AtlasPreviewLoading'; import PreviewLoading from 'components/PreviewLoading';
type Props = { type Props = {
collections: CollectionsStore, collections: CollectionsStore,
@ -56,7 +56,7 @@ type State = {
{this.state.redirectUrl && <Redirect to={this.state.redirectUrl} />} {this.state.redirectUrl && <Redirect to={this.state.redirectUrl} />}
<CenteredContent> <CenteredContent>
<AtlasPreviewLoading /> <PreviewLoading />
</CenteredContent> </CenteredContent>
</Layout> </Layout>
); );