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.
1 parent b95fb6f commit f962c5eCopy full SHA for f962c5e
web_src/js/index.js
@@ -2562,18 +2562,17 @@ $(document).ready(async () => {
2562
$(e).click();
2563
});
2564
2565
-
2566
$('.resolve-conversation').on('click', function (e) {
2567
e.preventDefault();
2568
const id = $(this).data('comment-id');
2569
const action = $(this).data('action');
2570
- const issue = $(this).data('issue-id');
+ const issue_id = $(this).data('issue-id');
2571
const url = $(this).data('update-url');
2572
2573
$.post(url, {
2574
_csrf: csrf,
2575
- action: action,
2576
- issue_id: issue,
+ action,
+ issue_id,
2577
comment_id: id,
2578
}).then(reload);
2579
0 commit comments