mirror of
https://github.com/ansible/awx.git
synced 2026-05-19 23:07:42 -02:30
Fixes console errors thrown about isValid on the workflow job template form
This commit is contained in:
@@ -131,7 +131,9 @@ function WorkflowJobTemplateForm({
|
|||||||
<TextInput
|
<TextInput
|
||||||
id="text-wfjt-limit"
|
id="text-wfjt-limit"
|
||||||
{...limitField}
|
{...limitField}
|
||||||
isValid={!limitMeta.touched || !limitMeta.error}
|
validated={
|
||||||
|
!limitMeta.touched || !limitMeta.error ? 'default' : 'error'
|
||||||
|
}
|
||||||
onChange={value => {
|
onChange={value => {
|
||||||
limitHelpers.setValue(value);
|
limitHelpers.setValue(value);
|
||||||
}}
|
}}
|
||||||
|
|||||||
Reference in New Issue
Block a user