You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 13, 2024. It is now read-only.
After upgrading to Version-4.0.0-beta.1. Form actions settings forms are not loading.
Looks like there is an issue with the scope variable of actionInfo. data is reflecting properly but the reference of that variable is the same. due to which form is not rendering.
Below is the code which is not working as expected.
// Get the action information.
var getActionInfo = function(name) {
return $scope.formio.actionInfo(name).then(function(actionInfo) {
if(actionInfo) {
$scope.actionInfo = _.merge($scope.actionInfo, actionInfo);
return $scope.actionInfo;
}
});
};
After upgrading to Version-4.0.0-beta.1. Form actions settings forms are not loading.
Looks like there is an issue with the scope variable of actionInfo. data is reflecting properly but the reference of that variable is the same. due to which form is not rendering.
Below is the code which is not working as expected.