Skip to content

Commit e9ac47d

Browse files
committed
if fetchError is true, render helper text
1 parent eaa6b78 commit e9ac47d

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

packages/ra-ui-materialui/src/input/AutocompleteInput.tsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -537,8 +537,9 @@ If you provided a React element for the optionText prop, you must also provide t
537537
return String(getChoiceValue(option)) === String(getChoiceValue(value));
538538
};
539539
const renderHelperText =
540+
!!fetchError ||
540541
helperText !== false ||
541-
((isTouched || isSubmitted || fetchError) && invalid);
542+
((isTouched || isSubmitted) && invalid);
542543

543544
return (
544545
<>

packages/ra-ui-materialui/src/input/CheckboxGroupInput.tsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -200,8 +200,9 @@ export const CheckboxGroupInput: FunctionComponent<CheckboxGroupInputProps> = pr
200200
}
201201

202202
const renderHelperText =
203+
!!fetchError ||
203204
helperText !== false ||
204-
((isTouched || isSubmitted || fetchError) && invalid);
205+
((isTouched || isSubmitted) && invalid);
205206

206207
return (
207208
<StyledFormControl

packages/ra-ui-materialui/src/input/RadioButtonGroupInput.tsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -160,8 +160,9 @@ export const RadioButtonGroupInput = (props: RadioButtonGroupInputProps) => {
160160
}
161161

162162
const renderHelperText =
163+
!!fetchError ||
163164
helperText !== false ||
164-
((isTouched || isSubmitted || fetchError) && invalid);
165+
((isTouched || isSubmitted) && invalid);
165166

166167
return (
167168
<StyledFormControl

packages/ra-ui-materialui/src/input/SelectArrayInput.tsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -275,8 +275,9 @@ export const SelectArrayInput = (props: SelectArrayInputProps) => {
275275
}
276276
: {};
277277
const renderHelperText =
278+
!!fetchError ||
278279
helperText !== false ||
279-
((isTouched || isSubmitted || fetchError) && invalid);
280+
((isTouched || isSubmitted) && invalid);
280281

281282
return (
282283
<>

packages/ra-ui-materialui/src/input/SelectInput.tsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -297,8 +297,9 @@ export const SelectInput = (props: SelectInputProps) => {
297297
}
298298

299299
const renderHelperText =
300+
!!fetchError ||
300301
helperText !== false ||
301-
((isTouched || isSubmitted || fetchError) && invalid);
302+
((isTouched || isSubmitted) && invalid);
302303

303304
return (
304305
<>

0 commit comments

Comments
 (0)