Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🚑 final fix for the backwards compat code
Before this, we had ``` $scope.ui_config.intro.app_required = $scope.ui_config?.intro.app_required || $scope.ui_config?.intro.program_or_study == 'program'; ``` This worked fine for backward compat, but in the case of a program where the app was not required, we ended up with `false || true` which is `true` Taking out the fancy javascript and going to a simpler, more verbose check of whether the property is undefined before overriding it Testing done: - Before this, denver CASR said that the app was required - After this, it said that it was voluntary
- Loading branch information