Browse Source

UI-2942: fix issue with empty faxbox notifications

4.3
JR Maitre 8 years ago
parent
commit
f6f301c1e0
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      submodules/strategy/strategy.js

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

@ -1345,7 +1345,7 @@ define(function(require) {
},
success: function(faxbox) {
var template = $(monster.template(self, 'strategy-popupEditFaxbox', {
email: faxbox.notifications.inbound.email.send_to
email: faxbox.hasOwnProperty('notifications') && faxbox.notifications.hasOwnProperty('inbound') && faxbox.notifications.inbound.hasOwnProperty('email') ? faxbox.notifications.inbound.email.send_to : ''
})),
popup = monster.ui.dialog(template, {
title: self.i18n.active().strategy.popupEditFaxbox.titles.edit,


Loading…
Cancel
Save