diff --git a/src/admin/pages/VendorAccountFields.vue b/src/admin/pages/VendorAccountFields.vue
index c4ad7a8c37..363f9fbc81 100644
--- a/src/admin/pages/VendorAccountFields.vue
+++ b/src/admin/pages/VendorAccountFields.vue
@@ -63,7 +63,7 @@
-
+
@@ -374,8 +374,11 @@ export default {
let height = dokan.store_banner_dimension.height;
return this.__( `Upload banner for your store. Banner size is (${width}x${height}) pixels.`, 'dokan-lite' );
- }
+ },
+ validatePhoneInput( event ) {
+ this.vendorInfo.phone = this.vendorInfo.phone.replace( /[^0-9\\.\-\_\(\)\+]+/g, '' );
+ }
}
};