1
0
mirror of https://github.com/ansible/awx.git synced 2024-11-01 08:21:15 +03:00

Changed source default verbosity from 0 to 1

This commit is contained in:
Michael Abashian 2017-07-20 13:54:11 -04:00
parent b11fabd981
commit e33cc987b2
2 changed files with 1 additions and 2 deletions

View File

@ -219,7 +219,7 @@ export default ['$state', '$stateParams', '$scope', 'SourcesFormDefinition',
multiple: false
});
$scope.verbosity = $scope.verbosity_options[0];
$scope.verbosity = $scope.verbosity_options[1];
}
function initSources(){

View File

@ -264,7 +264,6 @@ return {
type: 'select',
ngOptions: 'v.label for v in verbosity_options track by v.value',
ngShow: "source && (source.value !== '' && source.value !== null)",
"default": 0,
disableChooseOption: true,
column: 1,
awPopOver: "<p>" + i18n._("Control the level of output ansible will produce for inventory source update jobs.") + "</p>",