Skip to content

Commit 76abcce

Browse files
authored
fix no-section-label issues rendering
1 parent eb32f2d commit 76abcce

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/views/renderIssuesBlock.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,8 @@ const renderIssuesList = (
114114
) => {
115115
const issueGroups = groupIssuesByLabels(issues, projectWithConfig);
116116

117+
console.log(``)
118+
117119
const items = Object.entries(issueGroups)
118120
// make the general section to be first in the list
119121
.sort(([labelName1], [labelName2]) => {
@@ -131,8 +133,8 @@ const renderIssuesList = (
131133

132134
return TArraySortResult.Equal;
133135
})
134-
.map(([labelName, issues], i) => {
135-
if (!issues.length || labelName === NONE_LABEL) {
136+
.map(([labelName, issues]) => {
137+
if (!issues.length) {
136138
return;
137139
}
138140

0 commit comments

Comments
 (0)