Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ import {
FormControl,
Grid,
Input,
OutlinedInput,
InputLabel,
MenuItem,
Select,
Expand Down Expand Up @@ -374,7 +375,7 @@ function AdvanceEndpointConfig(props) {
<Typography className={classes.subTitle}>
<FormattedMessage id='Endpoint.Suspension.State' defaultMessage='Endpoint Suspension State' />
</Typography>
<FormControl className={classes.formControl}>
<FormControl variant='outlined' className={classes.formControl}>
<InputLabel htmlFor='err-code-select'>
<FormattedMessage
id='Apis.Details.Endpoints.AdvancedConfig.AdvanceEndpointConfig.error.code'
Expand All @@ -386,7 +387,7 @@ function AdvanceEndpointConfig(props) {
autoWidth={false}
value={advanceConfigObj.suspendErrorCode}
onChange={(event) => handleConfigFieldChange(event, 'suspendErrorCode')}
input={<Input id='err-code-select' />}
input={<OutlinedInput label='Error Code' id='err-code-select' />}
MenuProps={MenuProps}
variant='outlined'
renderValue={(allSelected) =>
Expand Down Expand Up @@ -460,7 +461,7 @@ function AdvanceEndpointConfig(props) {
defaultMessage='Endpoint Timeout State'
/>
</Typography>
<FormControl className={classes.formControl}>
<FormControl variant='outlined' className={classes.formControl}>
<InputLabel htmlFor='err-code-select'>
<FormattedMessage
id={'Apis.Details.Endpoints.AdvancedConfig.AdvanceEndpointConfig'
Expand All @@ -473,7 +474,7 @@ function AdvanceEndpointConfig(props) {
autoWidth={false}
value={advanceConfigObj.retryErroCode}
onChange={(event) => handleConfigFieldChange(event, 'retryErroCode')}
input={<Input id='err-code-select' />}
input={<OutlinedInput label='Error Code' id='err-code-select' />}
MenuProps={MenuProps}
renderValue={(allSelected) =>
allSelected.map(selected =>
Expand Down Expand Up @@ -527,7 +528,7 @@ function AdvanceEndpointConfig(props) {
<Typography className={classes.subTitle}>
<FormattedMessage id='Connection.Timeout' defaultMessage='Connection Timeout' />
</Typography>
<FormControl className={classes.formControl}>
<FormControl variant='outlined' className={classes.formControl}>
<InputLabel htmlFor='err-code-select'>
<FormattedMessage
id='Apis.Details.Endpoints.AdvancedConfig.AdvanceEndpointConfig.action'
Expand All @@ -538,7 +539,7 @@ function AdvanceEndpointConfig(props) {
autoWidth={false}
value={advanceConfigObj.actionSelect}
onChange={(event) => handleConfigFieldChange(event, 'actionSelect')}
input={<Input id='err-code-select' />}
input={<OutlinedInput label='Action' id='err-code-select' />}
MenuProps={MenuProps}
>
{actionItems.map((item) => (
Expand Down
Loading