Skip to content

Commit

Permalink
fix still disabled button issue
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexanderZagaynov committed Sep 5, 2019
1 parent 56cbc66 commit ca0d960
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -739,6 +739,8 @@ ManageIQ.angular.app.controller('emsCommonFormController', ['$http', '$scope', '

$scope.updateAuthStatus = function(updatedValue) {
$scope.angularForm[$scope.currentTab + '_auth_status'].$setViewValue(updatedValue);
$scope.angularForm.$valid = updatedValue;
$scope.angularForm.$invalid = !updatedValue;
};

$scope.updateHostname = function(value) {
Expand Down

0 comments on commit ca0d960

Please sign in to comment.