Addressed observations

This commit is contained in:
Jose Ivan Vargas 2017-09-26 16:14:25 -05:00
parent f68b3aaaad
commit 4f4060ab4c
1 changed files with 6 additions and 6 deletions

View File

@ -50,13 +50,13 @@ export default class ProtectedBranchCreate {
const $branchInput = this.$form.find('input[name="protected_branch[name]"]');
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);
// Save previously used settings
if (!completedForm) {
this.savePreviousSelection($allowedToMergeInput.val(), $allowedToPushInput.val());
}
const completedForm = !(
$branchInput.val() &&
$allowedToMergeInput.length &&
$allowedToPushInput.length
);
this.savePreviousSelection($allowedToMergeInput.val(), $allowedToPushInput.val());
this.$form.find('input[type="submit"]').attr('disabled', completedForm);
}