Skip to content

Commit

Permalink
Merge pull request #1983 from slntopp/dev-fixes
Browse files Browse the repository at this point in the history
fix sp binding bug
  • Loading branch information
SazukinPavel authored Jan 28, 2025
2 parents 05ca8f6 + c46fa16 commit 6b4ebd9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion admin-ui/src/components/plan/ovhPrices.vue
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,8 @@ export default {
},
sp() {
return this.$store.getters["servicesProviders/all"].find(
({ type }) => type === "ovh"
(sp) =>
sp.type === "ovh" && sp.meta?.plans?.includes(this.template.uuid)
);
},
},
Expand Down

0 comments on commit 6b4ebd9

Please sign in to comment.