AC-395 Changed txt of 'No unassigned playbook directories' message. Message now displays in the form rather than via a modal dialog. The message is only displayed when scm_type is manual and all project directories are already assigned.

This commit is contained in:
chouseknecht
2013-09-04 15:11:21 -04:00
parent d32240803e
commit cadbf5f22d
5 changed files with 33 additions and 9 deletions

View File

@@ -161,7 +161,9 @@ function ProjectsAdd ($scope, $rootScope, $compile, $location, $log, $routeParam
}
}
else {
data[fld] = scope[fld];
if (form.fields[fld].type !== 'alertblock') {
data[fld] = scope[fld];
}
}
}
if (scope.scm_type) {
@@ -339,7 +341,9 @@ function ProjectsEdit ($scope, $rootScope, $compile, $location, $log, $routePara
}
}
else {
params[fld] = scope[fld];
if (form.fields[fld].type !== 'alertblock') {
params[fld] = scope[fld];
}
}
}
if (scope.scm_type) {