diff --git a/src/shell/components/FieldTypeDateTime/index.tsx b/src/shell/components/FieldTypeDateTime/index.tsx index eeb433a88f..292248a97d 100644 --- a/src/shell/components/FieldTypeDateTime/index.tsx +++ b/src/shell/components/FieldTypeDateTime/index.tsx @@ -332,8 +332,9 @@ export const FieldTypeDateTime = ({ return options?.filter( (tz) => tz.label + .replace(" - ", " ") .toLowerCase() - .includes(state.inputValue.toLowerCase()) && + .includes(state.inputValue.toLowerCase().trim()) && // @ts-ignore tz.type !== "suggestion" );