Skip to content

Commit

Permalink
fix(show-diff-body): issue body class name
Browse files Browse the repository at this point in the history
  • Loading branch information
h13i32maru committed Jun 25, 2020
1 parent b1314cd commit b23ea2b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,6 @@
diffEl.appendChild(headerEl);
diffEl.appendChild(diffContainerEl);

const refEl = document.querySelector('.timeline-comment-wrapper .comment .edit-comment-hide');
document.querySelector('.timeline-comment-wrapper .comment').insertBefore(diffEl, refEl);
const refEl = document.querySelector('.timeline-comment-group .comment .edit-comment-hide');
document.querySelector('.timeline-comment-group .comment').insertBefore(diffEl, refEl);
})();

0 comments on commit b23ea2b

Please sign in to comment.