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

Remove empty mounted hook

parent 292473e7
......@@ -39,13 +39,12 @@ export default {
isBottomSummaryVisible: false,
};
},
mounted() {},
computed: {
selectedPlanPrice() {
return this.plan.pricePerYear;
},
selectedGroup() {
return this.namespaces.find((group) => group.id === +this.subscription.namespaceId);
return this.namespaces.find((group) => group.id === Number(this.subscription.namespaceId));
},
totalExVat() {
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