From 800ee9fcb979eec3d208f435630a6dae023673f9 Mon Sep 17 00:00:00 2001 From: sebastian-raubach Date: Tue, 24 May 2022 15:52:27 +0100 Subject: [PATCH] - FIX: Fixed share bug. --- src/components/Export.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Export.vue b/src/components/Export.vue index 141370c..285fa46 100644 --- a/src/components/Export.vue +++ b/src/components/Export.vue @@ -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 }