Browse Source

Fix status check enable (#10341) (#10343)

Signed-off-by: jolheiser <john.olheiser@gmail.com>
tags/v1.11.2
John Olheiser 4 years ago
parent
commit
457ee1ab5a
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      web_src/js/index.js

+ 1
- 1
web_src/js/index.js View File

@@ -1105,7 +1105,7 @@ function initRepository() {
// Branches
if ($('.repository.settings.branches').length > 0) {
initFilterSearchDropdown('.protected-branches .dropdown');
$('.enable-protection, .enable-whitelist').change(function () {
$('.enable-protection, .enable-whitelist, .enable-statuscheck').change(function () {
if (this.checked) {
$($(this).data('target')).removeClass('disabled');
} else {

Loading…
Cancel
Save