Skip to content

Commit

Permalink
Merge pull request #1261 from ushahidi/hotfix/allow-plus-in-phone-number
Browse files Browse the repository at this point in the history
fix: Allow + in phone numbers
  • Loading branch information
rjmackay authored Sep 19, 2018
2 parents 373c55d + 3cd34a6 commit 34af1e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/common/user-profile/notifications.html
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ <h2 class="listing-item-title">
ng-class="{ 'error': editContactForm.contact.$invalid && editContactForm.contact.$dirty }"
ng-maxlength="25"
ng-model="contact.contact"
ng-pattern="/^\d+$/"
ng-pattern="/^\+?\d+$/"
required>
</div>
</form>
Expand Down

0 comments on commit 34af1e9

Please sign in to comment.