Skip to content
Closed
Show file tree
Hide file tree
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 @@ -372,7 +372,7 @@ const TunePropertiesStep: React.FC<StepProps<StepData>> = props => {
/>
<FormInput.Text
name={`${getType()}.attempt`}
inputGroup={{ type: 'number' }}
inputGroup={{ type: 'string' }}
label={getString(`attempt`)}
/>
<FormInput.Text
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,28 +63,28 @@ export const ProbePropertiesStep: React.FC<StepProps<StepData>> = props => {
{
<Container padding={{ top: 'large', left: 'xsmall', right: 'large', bottom: 'xsmall' }}>
<FormInput.Text
inputGroup={{ type: 'number' }}
inputGroup={{ type: 'string' }}
name="probeTimeout"
label={formData.type == 'httpProbe' ? 'Probe Timeout (ms)' : 'Probe Timeout (sec)'}
placeholder={String(formData.runProperties?.probeTimeout)}
tooltipProps={{ dataTooltipId: 'chaos_probe_timeout' }}
/>
<FormInput.Text
inputGroup={{ type: 'number' }}
inputGroup={{ type: 'string' }}
name="interval"
label="Interval (sec)"
placeholder={String(formData.runProperties?.interval)}
tooltipProps={{ dataTooltipId: 'chaos_probe_interval' }}
/>
<FormInput.Text
inputGroup={{ type: 'number' }}
inputGroup={{ type: 'string' }}
name="probePollingInterval"
label="Polling Interval (sec)"
placeholder={String(formData.runProperties?.probePollingInterval)}
tooltipProps={{ dataTooltipId: 'chaos_probe_polling_interval' }}
/>
<FormInput.Text
inputGroup={{ type: 'number' }}
inputGroup={{ type: 'string' }}
name="initialDelay"
label="Initial Delay (sec)"
placeholder={String(formData.runProperties?.initialDelay)}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ function AdvancedChaosInfrastructureConfig({
{tolerationEntities.map((toleration, index) => (
<Layout.Horizontal key={index} className={css.keyValueContainer}>
<FormInput.Text
inputGroup={{ type: 'number' }}
inputGroup={{ type: 'string' }}
className={css.textCss}
disabled={toleration.effect === 'NoSchedule' || toleration.effect === ''}
name={`${'tolerationValues'}[${index}].tolerationSeconds`}
Expand Down