Skip to content

Commit f962c5e

Browse files
committed
fix lint
1 parent b95fb6f commit f962c5e

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

web_src/js/index.js

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2562,18 +2562,17 @@ $(document).ready(async () => {
25622562
$(e).click();
25632563
});
25642564

2565-
25662565
$('.resolve-conversation').on('click', function (e) {
25672566
e.preventDefault();
25682567
const id = $(this).data('comment-id');
25692568
const action = $(this).data('action');
2570-
const issue = $(this).data('issue-id');
2569+
const issue_id = $(this).data('issue-id');
25712570
const url = $(this).data('update-url');
25722571

25732572
$.post(url, {
25742573
_csrf: csrf,
2575-
action: action,
2576-
issue_id: issue,
2574+
action,
2575+
issue_id,
25772576
comment_id: id,
25782577
}).then(reload);
25792578
});

0 commit comments

Comments
 (0)