address-code-styling

This commit is contained in:
Jose Ivan Vargas 2017-10-04 16:56:20 -05:00
parent a2dcf052da
commit 91384251bb
1 changed files with 4 additions and 4 deletions

View File

@ -51,10 +51,10 @@ export default class ProtectedBranchCreate {
const $allowedToMergeInput = this.$form.find('input[name="protected_branch[merge_access_levels_attributes][0][access_level]"]');
const $allowedToPushInput = this.$form.find('input[name="protected_branch[push_access_levels_attributes][0][access_level]"]');
const completedForm = !(
$branchInput.val() &&
$allowedToMergeInput.length &&
$allowedToPushInput.length
);
$branchInput.val() &&
$allowedToMergeInput.length &&
$allowedToPushInput.length
);
this.savePreviousSelection($allowedToMergeInput.val(), $allowedToPushInput.val());
this.$form.find('input[type="submit"]').attr('disabled', completedForm);