We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb32f2d commit 76abcceCopy full SHA for 76abcce
src/views/renderIssuesBlock.ts
@@ -114,6 +114,8 @@ const renderIssuesList = (
114
) => {
115
const issueGroups = groupIssuesByLabels(issues, projectWithConfig);
116
117
+ console.log(``)
118
+
119
const items = Object.entries(issueGroups)
120
// make the general section to be first in the list
121
.sort(([labelName1], [labelName2]) => {
@@ -131,8 +133,8 @@ const renderIssuesList = (
131
133
132
134
return TArraySortResult.Equal;
135
})
- .map(([labelName, issues], i) => {
- if (!issues.length || labelName === NONE_LABEL) {
136
+ .map(([labelName, issues]) => {
137
+ if (!issues.length) {
138
return;
139
}
140
0 commit comments