Browse Source

UI-2765: fix typo with call recording field

4.3
Jean-Roch Maitre 9 years ago
parent
commit
0f82926e64
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      submodules/users/users.js

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

@ -2229,7 +2229,7 @@ define(function(require) {
}
}
if (currentAccount.hasOwnProperty('call_recording') && currentAccount.call_recording.hasOwnProperty('account')) {
if (currentAccount.hasOwnProperty('call_recording') && currentAccount.call_recording.hasOwnProperty('endpoint')) {
if (currentAccount.call_recording.endpoint.hasOwnProperty(category)) {
if (currentAccount.call_recording.endpoint[category].hasOwnProperty(direction) && currentAccount.call_recording.endpoint[category][direction].hasOwnProperty('enabled')) {
formattedData.extra[category][direction].accountValue = currentAccount.call_recording.endpoint[category][direction].enabled === true ? self.i18n.active().users.callRecording.toggleValues.on : self.i18n.active().users.callRecording.toggleValues.off;


Loading…
Cancel
Save