diff --git a/web/pgadmin/static/js/components/FormComponents.jsx b/web/pgadmin/static/js/components/FormComponents.jsx
index 5a218ac3..8dac34e2 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})}
     />
   );
 });
