diff --git a/web/app/components/base/input/index.tsx b/web/app/components/base/input/index.tsx index 30fd90aff8..db2c4b8048 100644 --- a/web/app/components/base/input/index.tsx +++ b/web/app/components/base/input/index.tsx @@ -46,6 +46,7 @@ const Input = ({ placeholder, onChange = noop, unit, + type = "text" ...props }: InputProps) => { const { t } = useTranslation() @@ -73,6 +74,7 @@ const Input = ({ value={value} onChange={onChange} disabled={disabled} + type={type} {...props} /> {showClearIcon && value && !disabled && !destructive && (