mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Fix subscription method issue
This commit is contained in:
parent
7e62c6a781
commit
a2341e8afc
@ -69,9 +69,11 @@ class AddNewAppFormComponent extends React.Component {
|
|||||||
isError: false
|
isError: false
|
||||||
});
|
});
|
||||||
const {application} = this.state;
|
const {application} = this.state;
|
||||||
|
const {price} = application;
|
||||||
const {data, release} = releaseData;
|
const {data, release} = releaseData;
|
||||||
const {formConfig} = this.props;
|
const {formConfig} = this.props;
|
||||||
|
|
||||||
|
application.subMethod = (price === 0) ? "FREE" : "PAID";
|
||||||
//add release wrapper
|
//add release wrapper
|
||||||
application[formConfig.releaseWrapperName] = [release];
|
application[formConfig.releaseWrapperName] = [release];
|
||||||
|
|
||||||
|
|||||||
@ -62,7 +62,6 @@ class NewAppDetailsForm extends React.Component {
|
|||||||
name,
|
name,
|
||||||
description,
|
description,
|
||||||
categories,
|
categories,
|
||||||
subMethod: (price === undefined || parseInt(price) === 0) ? "FREE" : "PAID",
|
|
||||||
tags,
|
tags,
|
||||||
unrestrictedRoles: [],
|
unrestrictedRoles: [],
|
||||||
};
|
};
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user