Author: echatellier Date: 2014-07-28 16:05:34 +0200 (Mon, 28 Jul 2014) New Revision: 446 Url: http://forge.codelutin.com/projects/faxtomail/repository/revisions/446 Log: fixes #5543: dans la liste des charg?\195?\169s de clientelle, ne pas faire d'h?\195?\169ritage Modified: trunk/faxtomail-ui-web/src/main/webapp/WEB-INF/content/admin/configuration-input.jsp trunk/faxtomail-ui-web/src/main/webapp/js/configuration.js Modified: trunk/faxtomail-ui-web/src/main/webapp/WEB-INF/content/admin/configuration-input.jsp =================================================================== --- trunk/faxtomail-ui-web/src/main/webapp/WEB-INF/content/admin/configuration-input.jsp 2014-07-28 14:00:16 UTC (rev 445) +++ trunk/faxtomail-ui-web/src/main/webapp/WEB-INF/content/admin/configuration-input.jsp 2014-07-28 14:05:34 UTC (rev 446) @@ -439,14 +439,6 @@ </tr> </thead> <tbody> - <tr ng-repeat="customerResponsible in parentScopeValues.customerResponsibles" class="parentInfos"> - <td> - <span class="fa fa-user"></span> - {{customerResponsible.firstName}} {{customerResponsible.lastName}}</td> - <td> - - </td> - </tr> <tr ng-repeat="customerResponsible in selectedMailFolder.customerResponsibles"> <td> <span class="fa fa-user"></span> Modified: trunk/faxtomail-ui-web/src/main/webapp/js/configuration.js =================================================================== --- trunk/faxtomail-ui-web/src/main/webapp/js/configuration.js 2014-07-28 14:00:16 UTC (rev 445) +++ trunk/faxtomail-ui-web/src/main/webapp/js/configuration.js 2014-07-28 14:05:34 UTC (rev 446) @@ -599,7 +599,6 @@ // initialisation des valeurs du parent $scope.parentScopeValues = { - customerResponsibles: [], replyAddresses: [], replyDomains: [], folderTableColumns: [], @@ -704,9 +703,6 @@ }; // parents values - if (folder.customerResponsibles) { - $scope.parentScopeValues.customerResponsibles = $scope.parentScopeValues.customerResponsibles.concat(folder.customerResponsibles); - } if (folder.replyAddresses) { $scope.parentScopeValues.replyAddresses = $scope.parentScopeValues.replyAddresses.concat(folder.replyAddresses); }