Skip to content

Commit

Permalink
fix: 索引错误
Browse files Browse the repository at this point in the history
  • Loading branch information
TBXark committed May 17, 2024
1 parent e353acb commit cfdbea1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/redmine.js
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ export function renderWeeklyHTML(list) {
html += `<li><h5>${numberToChinese(i + 1)}. ${item.subject} (issue: ${item.issue_id})</h5></li>\n`;
if (item.entries && item.entries.length > 0) {
html += `<ul>\n`;
let j = 1;
let j = 0;
for (const entry of item.entries) {
if (entry.comment) {
j += 1;
Expand Down

0 comments on commit cfdbea1

Please sign in to comment.