Fix subscription method issue

feature/appm-store/pbac
Jayasanka 5 years ago
parent 7e62c6a781
commit a2341e8afc

@ -69,9 +69,11 @@ class AddNewAppFormComponent extends React.Component {
isError: false
});
const {application} = this.state;
const {price} = application;
const {data, release} = releaseData;
const {formConfig} = this.props;
application.subMethod = (price === 0) ? "FREE" : "PAID";
//add release wrapper
application[formConfig.releaseWrapperName] = [release];

@ -62,7 +62,6 @@ class NewAppDetailsForm extends React.Component {
name,
description,
categories,
subMethod: (price === undefined || parseInt(price) === 0) ? "FREE" : "PAID",
tags,
unrestrictedRoles: [],
};

Loading…
Cancel
Save