mirror of
https://github.com/ansible/awx.git
synced 2026-06-28 09:58:03 -02:30
Fixed issue with Allow Callback checkbox and host_config_key value when user unchecks Allow Callback checkbox.
This commit is contained in:
@@ -377,7 +377,7 @@ function JobTemplatesEdit ($scope, $rootScope, $compile, $location, $log, $route
|
||||
getPlaybooks(scope.project);
|
||||
$('#forks-slider').slider('value',scope.forks); // align slider handle with value.
|
||||
|
||||
var dft = (scope['host_config_key']) ? 'true' : 'false';
|
||||
var dft = (scope['host_config_key'] === "" || scope['host_config_key'] === null) ? 'false' : 'true';
|
||||
md5Setup({
|
||||
scope: scope,
|
||||
master: master,
|
||||
|
||||
Reference in New Issue
Block a user