AC-1076 Added scm_update_cache_timeout to project add/edit page.

This commit is contained in:
Chris Houseknecht
2014-03-26 17:48:11 -04:00
parent d8383a4d69
commit ba5c396630
2 changed files with 20 additions and 2 deletions

View File

@@ -576,7 +576,7 @@ function ProjectsEdit($scope, $rootScope, $compile, $location, $log, $routeParam
master[form.fields[fld].fields[i].name] = data[form.fields[fld].fields[i].name];
}
} else {
if (data[fld]) {
if (data[fld] !== undefined) {
$scope[fld] = data[fld];
master[fld] = data[fld];
}