Browse Source

UI-2559: Remove manual MDN formatting (adding +1) and encode '+' character when using it as in URL parameter

4.3
Joris Tirado 9 years ago
parent
commit
ff1d37f87a
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      submodules/users/users.js

+ 2
- 2
submodules/users/users.js View File

@ -3070,7 +3070,7 @@ define(function(require){
accountId: self.accountId,
data: {
filters: {
'filter_mobile.mdn': mdn
'filter_mobile.mdn': encodeURIComponent(mdn)
}
}
},
@ -3429,7 +3429,7 @@ define(function(require){
resource: 'callflow.searchByNumber',
data: {
accountId: self.accountId,
value: encodeURIComponent('+1' + phoneNumber),
value: encodeURIComponent(phoneNumber),
filter_owner_id: userId,
filter_type: 'mobile'
},


Loading…
Cancel
Save