diff --git a/web/pgadmin/static/js/components/FormComponents.jsx b/web/pgadmin/static/js/components/FormComponents.jsx index 5a218ac3a..8dac34e2c 100644 --- a/web/pgadmin/static/js/components/FormComponents.jsx +++ b/web/pgadmin/static/js/components/FormComponents.jsx @@ -339,7 +339,7 @@ export const InputText = forwardRef(({ onChange={onChangeFinal} {...controlProps} {...props} - {...(['numeric', 'int'].indexOf(type) > -1 ? {type: 'tel'} : {})} + {...(['numeric', 'int'].indexOf(type) > -1 ? {type: 'tel'} : {type: type})} /> ); });