We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2b3200f + 1395cdc commit d75323fCopy full SHA for d75323f
templates/EnigmaOps/pendingRequests.html
@@ -213,7 +213,7 @@
213
214
$(`.${selector}`).each(function () {
215
if ($(this).is(":checked"))
216
- reqParams.push(encodeURIComponent(`requestId=${$(this).val()}`))
+ reqParams.push(`requestId=${encodeURIComponent($(this).val())}`)
217
request_ids.push($(this).val())
218
});
219
@@ -242,7 +242,7 @@
242
let urlBuilder = `/accept_bulk/${selector}?`
243
request_id = $(this).val()
244
reqParams = []
245
- reqParams.push(encodeURIComponent(`requestId=${request_id}`))
+ reqParams.push(`requestId=${encodeURIComponent(request_id)}`)
246
247
urlBuilder = urlBuilder + reqParams.join("&")
248
div_id = request_id + "-action"
0 commit comments