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 has been 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;
}
});
};
The text was updated successfully, but these errors were encountered:
@randallknutson@travist can you please check changes that I have made to support formiojs v4.
I need these changes to be in place before proceeding to version update. #53
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
The text was updated successfully, but these errors were encountered: