From bc074ffb3f5778c126e6cc75919ec100a265f924 Mon Sep 17 00:00:00 2001 From: jedi Date: Wed, 26 Jun 2024 21:22:34 +0200 Subject: [PATCH] stash --- web/src/components/Timeline.vue | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/web/src/components/Timeline.vue b/web/src/components/Timeline.vue index 97c8463..6130656 100644 --- a/web/src/components/Timeline.vue +++ b/web/src/components/Timeline.vue @@ -73,7 +73,7 @@ import TimelineMail from "@/components/TimelineMail.vue"; import TimelineComment from "@/components/TimelineComment.vue"; import TimelineStateChange from "@/components/TimelineStateChange.vue"; -import {mapActions, mapGetters} from "vuex"; +import {mapGetters} from "vuex"; import TimelineAssignment from "@/components/TimelineAssignment.vue"; import TimelineRelatedItem from "@/components/TimelineRelatedItem.vue"; import TimelineShippingVoucher from "@/components/TimelineShippingVoucher.vue"; @@ -103,7 +103,6 @@ export default { }, }, methods: { - ...mapActions(['fetchShippingVouchers']), sendMailAndClear: function () { this.$emit('sendMail', this.newMail); this.newMail = ""; @@ -112,9 +111,6 @@ export default { this.$emit('addComment', this.newComment); this.newComment = ""; } - }, - mounted() { - this.fetchShippingVouchers(); } };