From ee82d8bd83dedcdc78b1e355aa7e212a0b5e9bb3 Mon Sep 17 00:00:00 2001 From: Benoit Lavenier <benoit.lavenier@e-is.pro> Date: Fri, 19 Mar 2021 11:34:01 +0100 Subject: [PATCH] [fix] Page: 'undefined' error, when trying to access the comment service, in ESCommentController --- www/plugins/es/js/controllers/group-controllers.js | 2 +- www/plugins/es/js/controllers/registry-controllers.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/www/plugins/es/js/controllers/group-controllers.js b/www/plugins/es/js/controllers/group-controllers.js index ff51915b1..5ba8071e4 100644 --- a/www/plugins/es/js/controllers/group-controllers.js +++ b/www/plugins/es/js/controllers/group-controllers.js @@ -216,7 +216,7 @@ function ESGroupViewController($scope, $state, $ionicPopover, $ionicHistory, $tr delete data.record.pictures; // remove, as already stored in $scope.pictures // Load other data (from child controller) - $scope.$broadcast('$recordView.load', id, esGroup.record.comment); + $scope.$broadcast('$recordView.load', id, esGroup.record); $scope.loading = false; UIUtils.loading.hide(); diff --git a/www/plugins/es/js/controllers/registry-controllers.js b/www/plugins/es/js/controllers/registry-controllers.js index 44ab53d1a..bd6930e9d 100644 --- a/www/plugins/es/js/controllers/registry-controllers.js +++ b/www/plugins/es/js/controllers/registry-controllers.js @@ -888,7 +888,7 @@ function ESRegistryRecordViewController($scope, $rootScope, $state, $q, $timeout // Load other data (from child controller) $timeout(function() { - return $scope.$broadcast('$recordView.load', id, esRegistry.record.comment); + return $scope.$broadcast('$recordView.load', id, esRegistry.record); }) ]) .then(function() { -- GitLab