Skip to content

Commit

Permalink
fix: pb maj email si un est null
Browse files Browse the repository at this point in the history
  • Loading branch information
Julien Perrin committed Dec 11, 2024
1 parent 90bb470 commit ef7eab3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/backoffice/components/common/page/form/Select.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const Select = ({
useEffect(() => {
setFilteredOptions(
options.filter(option =>
normalizeString(option[optionLabel]).includes(normalizeString(filter))
option[optionLabel] && normalizeString(option[optionLabel]).includes(normalizeString(filter))
)
);
}, [filter, options, optionLabel]);
Expand Down

0 comments on commit ef7eab3

Please sign in to comment.