I have a set of files related to a new feature that I am trying to deploy through Jenkins. I have successfully deployed other branches in the past, but I am encountering difficulties with a specific branch. https://i.sstatic.net/BKVbH.png I believe the problem may be related to the use of root scope. Below is the code snippet that is causing the issue:
fetchLeaseForm().then(function
() {
// setWebViewerForCustomTemplate($scope.selected.leaseForm.lease_form_template.document_path)
$rootScope.template_url
= $scope.selected.leaseForm.lease_form_template?.document_path
console.log($scope.selected.leaseForm.lease_form_template?.document_path,
'@@fetchleaseformthen')
$rootScope.customLeaseFormDropdown()
})
I have attempted to pull the latest updates from the master branch to rule out any potential issues. Additionally, I was able to successfully push the changes to Git without any errors.
If anyone has insights or suggestions regarding this issue, it would be greatly appreciated.