Skip to content

Commit

Permalink
Merge pull request #763 from Support-pl/dev-fixes
Browse files Browse the repository at this point in the history
fixed minor bug
  • Loading branch information
639852 authored Sep 3, 2024
2 parents 83a9875 + a4972eb commit edd941f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/cloud/modules/ovh vps/openInstance.vue
Original file line number Diff line number Diff line change
Expand Up @@ -781,7 +781,7 @@ export default defineComponent({
tariffs () {
if (!this.VM?.billingPlan) return {}
const tariffs = {}
const { products } = this.plans.find(({ uuid }) => uuid === this.VM.billingPlan.uuid) ?? {}
const { products = {} } = this.plans.find(({ uuid }) => uuid === this.VM.billingPlan.uuid) ?? {}
const productKey = this.VM.product ?? `${this.VM.config.duration} ${this.VM.config.planCode}`

Object.keys(products).forEach((key) => {
Expand Down

0 comments on commit edd941f

Please sign in to comment.