mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Add "Any OS version" option to supported OS version in APPM publisher UI
This commit is contained in:
parent
b4d76b893d
commit
90570e1d3c
@ -433,7 +433,14 @@ class NewAppUploadForm extends React.Component {
|
||||
<Col span={11}>
|
||||
<Select style={{width: "100%"}}
|
||||
placeholder="Upper version"
|
||||
defaultActiveFirstOption={true}
|
||||
onChange={this.handleUpperOsVersionChange}>
|
||||
{(supportedOsVersions.length > 0) &&(
|
||||
<Option key="any"
|
||||
value={supportedOsVersions[supportedOsVersions.length-1]["versionName"]}>
|
||||
Any
|
||||
</Option>
|
||||
)}
|
||||
{supportedOsVersions.map(version => (
|
||||
<Option key={version.versionName}
|
||||
value={version.versionName}>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user