]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 1541582 - Set qe-verify to + when manual QA requested upon uplift
authorMatt N <github@matthew.noorenberghe.com>
Wed, 3 Apr 2019 21:51:46 +0000 (14:51 -0700)
committerKohei Yoshino <kohei.yoshino@gmail.com>
Wed, 3 Apr 2019 21:51:46 +0000 (17:51 -0400)
extensions/FlagTypeComment/web/js/ftc.js

index 5756d06c1e5010a41b67a72fbd8ccf7b4039bf12..a6736707c22fb17769eaddecaa428ecd821cd0c8 100644 (file)
@@ -284,7 +284,7 @@ Bugzilla.FlagTypeComment = class FlagTypeComment {
 
     // Collect bug flags from checkboxes
     const bug_flags = [...this.$fieldset_wrapper.querySelectorAll('input[data-bug-flag]:checked')]
-      .map($input => ({ name: $input.getAttribute('data-bug-flag'), status: '?' }));
+      .map($input => ({ name: $input.getAttribute('data-bug-flag'), status: '+' }));
 
     // Update bug flags if needed
     if (bug_flags.length) {