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