From 2cc5cbd43d0ec5b1c1a9140cc5d5f11e90c7d540 Mon Sep 17 00:00:00 2001 From: Matt N Date: Wed, 3 Apr 2019 14:51:46 -0700 Subject: [PATCH] Bug 1541582 - Set qe-verify to + when manual QA requested upon uplift --- extensions/FlagTypeComment/web/js/ftc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- 2.47.3