Set up Galleries to use flamelink images. Set up to use collection schema type only. There is one bug I need to address. Gallery doesn't render when the webpage is loaded but works otherwise.

This commit is contained in:
ajmaley
2018-11-25 11:28:23 -05:00
parent a61a881126
commit 00a3566dec
5 changed files with 75 additions and 40 deletions

View File

@@ -9,7 +9,6 @@ class Home extends Component {
super();
global.schemaName = 'martenHome';
global.galleryName = 'martenGallery';
this.state = {
schemaDetails: '',
@@ -34,7 +33,7 @@ class Home extends Component {
render() {
return (
<Grid container>
<FlameLinkCollectionGallery />
<FlameLinkCollectionGallery galleryName={'martenGallery'}/>
<FlameLinkComponentCreations schemaDetails={this.state.schemaDetails} schemaType = {this.state.schemaType}/>
</Grid>
);