Skip to content

Commit b64e2c0

Browse files
authored
fix(user/edit): escape parenthesis in input pattern (#823)
1 parent cb84a65 commit b64e2c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

addon/templates/users/edit.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585
name="phone"
8686
placeholder="{{t 'emeis.users.headings.phone-placeholder'}}"
8787
required={{includes "phone" this.requiredFields}}
88-
pattern="^[0-9()\+\-\s]+$"
88+
pattern="^[0-9\(\)\+\-\s]+$"
8989
value={{@model.phone}}
9090
/>
9191

0 commit comments

Comments
 (0)