Skip to content

Commit

Permalink
Add missing semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
akhuoa committed May 2, 2024
1 parent d54a992 commit da6eb96
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/DatasetCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ export default {
this.propogateCardAction(payload)
},
galleryDatasetClicked: function (payload) {
EventBus.emit('dataset-clicked', payload) // Pass to mapintegratedvuer
EventBus.emit('dataset-clicked', payload); // Pass to mapintegratedvuer
},
openDataset: function () {
window.open(this.dataLocation, '_blank')
Expand Down
2 changes: 1 addition & 1 deletion src/components/ImageGallery.vue
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ export default {
this.$emit('card-clicked', payload)
},
datasetClicked: function (payload) {
this.$emit('dataset-clicked', payload)
this.$emit('dataset-clicked', payload);
},
createSciCurnchItems: function () {
this.updateS3Bucket(this.entry.s3uri)
Expand Down
2 changes: 1 addition & 1 deletion src/components/SideBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ export default {
* from the gallery component is clicked.
* @arg payload
*/
this.$emit('dataset-clicked', payLoad)
this.$emit('dataset-clicked', payLoad);
})
},
}
Expand Down

0 comments on commit da6eb96

Please sign in to comment.