Commit 5a0b1180 authored by Vitaly Slobodin's avatar Vitaly Slobodin

Remove empty mounted hook

parent 292473e7
...@@ -39,13 +39,12 @@ export default { ...@@ -39,13 +39,12 @@ export default {
isBottomSummaryVisible: false, isBottomSummaryVisible: false,
}; };
}, },
mounted() {},
computed: { computed: {
selectedPlanPrice() { selectedPlanPrice() {
return this.plan.pricePerYear; return this.plan.pricePerYear;
}, },
selectedGroup() { selectedGroup() {
return this.namespaces.find((group) => group.id === +this.subscription.namespaceId); return this.namespaces.find((group) => group.id === Number(this.subscription.namespaceId));
}, },
totalExVat() { totalExVat() {
return this.subscription.quantity * this.selectedPlanPrice; return this.subscription.quantity * this.selectedPlanPrice;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment