add missing double quote from PR #70
This commit is contained in:
parent
ee1bf04779
commit
dc2b041050
|
@ -124,7 +124,7 @@ module.exports = function() {
|
||||||
edited_span = `<span title="this comment is edited">*</span>`
|
edited_span = `<span title="this comment is edited">*</span>`
|
||||||
}
|
}
|
||||||
comments_html += `
|
comments_html += `
|
||||||
<div class="comment ${comment.depth % 2 === 0 ? 'even-depth' : 'odd-depth'} id="${comment.id}">
|
<div class="comment ${comment.depth % 2 === 0 ? 'even-depth' : 'odd-depth'}" id="${comment.id}">
|
||||||
<details open>
|
<details open>
|
||||||
<summary>
|
<summary>
|
||||||
<p class="author">${commentAuthor(comment, classlist, submitter && submitter_link, moderator && moderator_badge)}</p>
|
<p class="author">${commentAuthor(comment, classlist, submitter && submitter_link, moderator && moderator_badge)}</p>
|
||||||
|
|
Loading…
Reference in New Issue