From: Matt N Date: Wed, 3 Apr 2019 21:51:46 +0000 (-0700) Subject: Bug 1541582 - Set qe-verify to + when manual QA requested upon uplift X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2cc5cbd43d0ec5b1c1a9140cc5d5f11e90c7d540;p=thirdparty%2Fbugzilla.git Bug 1541582 - Set qe-verify to + when manual QA requested upon uplift --- diff --git a/extensions/FlagTypeComment/web/js/ftc.js b/extensions/FlagTypeComment/web/js/ftc.js index 5756d06c1..a6736707c 100644 --- a/extensions/FlagTypeComment/web/js/ftc.js +++ b/extensions/FlagTypeComment/web/js/ftc.js @@ -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) {