Skip to content

Commit

Permalink
- FIX: Fixed share bug.
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastian-raubach committed May 24, 2022
1 parent eaf2d60 commit 800ee9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Export.vue
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export default {
},
exportJson: function () {
const storeData = this.$store.state.dataset ? this.$store.state.dataset.data : null
if (!this.storeDatasetUuid || !storeData || storeData.length < 1) {
if (!storeData || storeData.length < 1) {
return
}
Expand Down

0 comments on commit 800ee9f

Please sign in to comment.