From 083a19714e0746f4e67b50ccc513ac22528e80e0 Mon Sep 17 00:00:00 2001 From: Tony Valle Date: Wed, 26 Jun 2024 12:56:10 +0200 Subject: [PATCH] fix: generate new attributes after clicking on "Save and add new" --- components/registration/registration-controller.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/registration/registration-controller.js b/components/registration/registration-controller.js index 1f2b3b9a4..f0eefdd26 100644 --- a/components/registration/registration-controller.js +++ b/components/registration/registration-controller.js @@ -476,7 +476,7 @@ trackerCapture.controller('RegistrationController', $scope.apiFormattedTei = {}; $scope.currentEvent = {}; $timeout(function() { - $rootScope.$broadcast('registrationWidget', {registrationMode: 'REGISTRATION'}); + $rootScope.$broadcast('registrationWidget', {registrationMode: 'REGISTRATION', generateAttributes: true}); }); } };