Fixed a few more bugs

This commit is contained in:
ajmaley 2018-11-25 14:36:46 -05:00
parent 848961dc25
commit 1bde733cae
2 changed files with 5 additions and 4 deletions

View File

@ -30,9 +30,6 @@ class FlameLinkCollectionGallery extends Component {
constructor(props) {
super(props);
global.mediaURLs = [];
//global.mediaIDs = [];
this.state = {
schemaDetails: '',
schemaContent: '',
@ -79,6 +76,9 @@ class FlameLinkCollectionGallery extends Component {
}
createGallery(num) {
if(num === '0'){
global.galleryImages = [];
}
return <FlameLinkCollectionGalleryContent mediaIDs={this} num={num} key={this[num]} />
}

View File

@ -20,7 +20,8 @@ class FlameLinkCollectionGalleryContent extends Component {
addURLs = () => {
if (this.state.mediaURL === '') {
} else {
}
else {
var element = {}
element.original = this.state.mediaURL;
global.galleryImages.push(element);