mirror of
https://github.com/ansible/awx.git
synced 2026-01-20 06:01:25 -03:30
Merge pull request #5535 from jaredevantabor/ctit-reset
CTiT Revert All
This commit is contained in:
commit
3fff094d6e
@ -268,7 +268,7 @@ export default [
|
||||
|
||||
$scope.$on('populated', function() {
|
||||
startCodeMirrors();
|
||||
populateLDAPGroupType();
|
||||
populateLDAPGroupType(false);
|
||||
});
|
||||
|
||||
angular.extend(authVm, {
|
||||
|
||||
@ -449,6 +449,7 @@ export default [
|
||||
.then(function() {
|
||||
populateFromApi();
|
||||
$scope[formTracker.currentFormName()].$setPristine();
|
||||
$scope.$broadcast('CUSTOM_LOGO_reverted');
|
||||
})
|
||||
.catch(function(error) {
|
||||
ProcessErrors($scope, error, status, formDefs[formTracker.getCurrent()],
|
||||
|
||||
@ -99,8 +99,8 @@ export default [
|
||||
populateAdhocCommand(flag);
|
||||
});
|
||||
|
||||
$scope.$on('populated', function(e, data, flag) {
|
||||
populateAdhocCommand(flag);
|
||||
$scope.$on('populated', function() {
|
||||
populateAdhocCommand(false);
|
||||
});
|
||||
|
||||
// Fix for bug where adding selected opts causes form to be $dirty and triggering modal
|
||||
|
||||
@ -152,8 +152,8 @@ export default [
|
||||
|
||||
var dropdownRendered = false;
|
||||
|
||||
$scope.$on('populated', function(e, data, flag) {
|
||||
populateLogAggregator(flag);
|
||||
$scope.$on('populated', function() {
|
||||
populateLogAggregator(false);
|
||||
});
|
||||
|
||||
$scope.$on('LOG_AGGREGATOR_TYPE_populated', function(e, data, flag) {
|
||||
|
||||
@ -101,8 +101,8 @@
|
||||
populatePendoTrackingState(flag);
|
||||
});
|
||||
|
||||
$scope.$on('populated', function(e, data, flag){
|
||||
populatePendoTrackingState(flag);
|
||||
$scope.$on('populated', function(){
|
||||
populatePendoTrackingState(false);
|
||||
});
|
||||
|
||||
angular.extend(uiVm, {
|
||||
|
||||
@ -179,7 +179,7 @@ function(ConfigurationUtils, i18n, $rootScope) {
|
||||
scope.$parent[fieldKey] = '';
|
||||
filePickerButton.html(browseText);
|
||||
filePickerText.val('');
|
||||
filePicker.value = "";
|
||||
filePicker.context.value = "";
|
||||
scope.imagePresent = false;
|
||||
}
|
||||
else {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user