|
@@ -189,7 +189,14 @@ class APIGroupCard extends Component {
|
|
|
return (
|
|
return (
|
|
|
<div>
|
|
<div>
|
|
|
<div style={{marginBottom: 10}}>
|
|
<div style={{marginBottom: 10}}>
|
|
|
- <span className='vice-title'><FormattedMessage id={valueToKey['groupName']}/>
|
|
|
|
|
|
|
+ <span className='vice-title'>
|
|
|
|
|
+ {
|
|
|
|
|
+ youMustFill['groupName']?
|
|
|
|
|
+ <span style={{color: 'red', display: 'inline', marginRight: 10}}>*</span>
|
|
|
|
|
+ :
|
|
|
|
|
+ ''
|
|
|
|
|
+ }
|
|
|
|
|
+ <FormattedMessage id={valueToKey['groupName']}/>
|
|
|
|
|
|
|
|
<Tooltip placement="top" title={toolTipTitle['groupName']}>
|
|
<Tooltip placement="top" title={toolTipTitle['groupName']}>
|
|
|
<Icon type="question-circle"/>
|
|
<Icon type="question-circle"/>
|
|
@@ -200,7 +207,14 @@ class APIGroupCard extends Component {
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
<div style={{marginBottom: 10}}>
|
|
<div style={{marginBottom: 10}}>
|
|
|
- <span className='vice-title'><FormattedMessage id={valueToKey['region']}/>
|
|
|
|
|
|
|
+ <span className='vice-title'>
|
|
|
|
|
+ {
|
|
|
|
|
+ youMustFill['region']?
|
|
|
|
|
+ <span style={{color: 'red', display: 'inline', marginRight: 10}}>*</span>
|
|
|
|
|
+ :
|
|
|
|
|
+ ''
|
|
|
|
|
+ }
|
|
|
|
|
+ <FormattedMessage id={valueToKey['region']}/>
|
|
|
|
|
|
|
|
<Tooltip placement="top" title={toolTipTitle['region']}>
|
|
<Tooltip placement="top" title={toolTipTitle['region']}>
|
|
|
<Icon type="question-circle"/>
|
|
<Icon type="question-circle"/>
|
|
@@ -219,7 +233,14 @@ class APIGroupCard extends Component {
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
<div style={{marginBottom: 10}}>
|
|
<div style={{marginBottom: 10}}>
|
|
|
- <span className='vice-title'><FormattedMessage id={valueToKey['environmentName']}/>
|
|
|
|
|
|
|
+ <span className='vice-title'>
|
|
|
|
|
+ {
|
|
|
|
|
+ youMustFill['environmentName']?
|
|
|
|
|
+ <span style={{color: 'red', display: 'inline', marginRight: 10}}>*</span>
|
|
|
|
|
+ :
|
|
|
|
|
+ ''
|
|
|
|
|
+ }
|
|
|
|
|
+ <FormattedMessage id={valueToKey['environmentName']}/>
|
|
|
|
|
|
|
|
<Tooltip placement="top" title={toolTipTitle['environmentName']}>
|
|
<Tooltip placement="top" title={toolTipTitle['environmentName']}>
|
|
|
<Icon type="question-circle"/>
|
|
<Icon type="question-circle"/>
|
|
@@ -236,7 +257,14 @@ class APIGroupCard extends Component {
|
|
|
<Panel header=<FormattedMessage id="Want more options?"/> style={customPanelStyle}>
|
|
<Panel header=<FormattedMessage id="Want more options?"/> style={customPanelStyle}>
|
|
|
|
|
|
|
|
<div style={{marginBottom: 10}}>
|
|
<div style={{marginBottom: 10}}>
|
|
|
- <span className='vice-title'><FormattedMessage id={valueToKey['frontType']}/>
|
|
|
|
|
|
|
+ <span className='vice-title'>
|
|
|
|
|
+ {
|
|
|
|
|
+ youMustFill['frontType']?
|
|
|
|
|
+ <span style={{color: 'red', display: 'inline', marginRight: 10}}>*</span>
|
|
|
|
|
+ :
|
|
|
|
|
+ ''
|
|
|
|
|
+ }
|
|
|
|
|
+ <FormattedMessage id={valueToKey['frontType']}/>
|
|
|
|
|
|
|
|
<Tooltip placement="top" title={toolTipTitle['frontType']}>
|
|
<Tooltip placement="top" title={toolTipTitle['frontType']}>
|
|
|
<Icon type="question-circle"/>
|
|
<Icon type="question-circle"/>
|
|
@@ -260,7 +288,14 @@ class APIGroupCard extends Component {
|
|
|
{/*</div>*/}
|
|
{/*</div>*/}
|
|
|
|
|
|
|
|
<div style={{marginBottom: 10}}>
|
|
<div style={{marginBottom: 10}}>
|
|
|
- <span className='vice-title'><FormattedMessage id={valueToKey['userDomain']}/>
|
|
|
|
|
|
|
+ <span className='vice-title'>
|
|
|
|
|
+ {
|
|
|
|
|
+ youMustFill['userDomain']?
|
|
|
|
|
+ <span style={{color: 'red', display: 'inline', marginRight: 10}}>*</span>
|
|
|
|
|
+ :
|
|
|
|
|
+ ''
|
|
|
|
|
+ }
|
|
|
|
|
+ <FormattedMessage id={valueToKey['userDomain']}/>
|
|
|
|
|
|
|
|
<Tooltip placement="top" title={toolTipTitle['userDomain']}>
|
|
<Tooltip placement="top" title={toolTipTitle['userDomain']}>
|
|
|
<Icon type="question-circle"/>
|
|
<Icon type="question-circle"/>
|