Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
a1012112796 committed Apr 10, 2020
1 parent b95fb6f commit f962c5e
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions web_src/js/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2562,18 +2562,17 @@ $(document).ready(async () => {
$(e).click();
});


$('.resolve-conversation').on('click', function (e) {
e.preventDefault();
const id = $(this).data('comment-id');
const action = $(this).data('action');
const issue = $(this).data('issue-id');
const issue_id = $(this).data('issue-id');
const url = $(this).data('update-url');

$.post(url, {
_csrf: csrf,
action: action,
issue_id: issue,
action,
issue_id,
comment_id: id,
}).then(reload);
});
Expand Down

0 comments on commit f962c5e

Please sign in to comment.