Bug 34080: Make suggestions_batch_ops a class

To test:
1. Make some suggestions with different statuses.
2. Try moving some suggestion to different statuses.
3. Going from PENDING to another status works fine.
4. Moving from other status (REJECTED, ORDERED, etc ) will cause a 500 error.
5. Apply patch
6. Try 2 - 4 again, no more 500 errors, yay!

Signed-off-by: Sam Lau <samalau@gmail.com>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
This commit is contained in:
Lucas Gass 2023-06-23 15:13:42 +00:00 committed by Tomas Cohen Arazi
parent 241eaa1967
commit 1d60fd79a4
Signed by: tomascohen
GPG key ID: 0A272EA1B2F3C15F

View file

@ -862,7 +862,7 @@
<h2>Change selected suggestions</h2>
</div>
</div>
<div id="suggestions_batch_ops" class="row">
<div class="suggestions_batch_ops row">
<div class="col-sm-4">
<fieldset class="brief">
<div id="select-reason[% loop.index | html %]">
@ -1390,7 +1390,7 @@
});
// Note: the selector below passes a second 'context' param - it is not a multiple selector
$("button[type='submit']", "#suggestions_batch_ops").on("click", function(e) {
$("button[type='submit']", ".suggestions_batch_ops").on("click", function(e) {
var submit_button = this;
var form = $(submit_button).parents("form");
var action = $(submit_button).val();