From 29efa9c3fb47a00f03bf5d2fdcacd004dc790290 Mon Sep 17 00:00:00 2001
From: John Olheiser <42128690+jolheiser@users.noreply.github.com>
Date: Tue, 18 Feb 2020 12:58:16 -0600
Subject: [PATCH] Fix status check enable (#10341)

Signed-off-by: jolheiser <john.olheiser@gmail.com>
---
 web_src/js/index.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/web_src/js/index.js b/web_src/js/index.js
index 2f2baddcfb..2b5cc4a529 100644
--- a/web_src/js/index.js
+++ b/web_src/js/index.js
@@ -1116,7 +1116,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 {