diff --git a/ghost/admin/app/components/gh-membership-products-alpha.js b/ghost/admin/app/components/gh-membership-products-alpha.js index f95a6d9c54..350666fa28 100644 --- a/ghost/admin/app/components/gh-membership-products-alpha.js +++ b/ghost/admin/app/components/gh-membership-products-alpha.js @@ -14,7 +14,15 @@ export default class extends Component { @tracked productModel = null; get products() { - return this.args.products; + return this.args.products.map((product, idx) => { + if (idx === 0) { + return { + ...product.toJSON(), + portal: true + }; + } + return product; + }); } @action