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 8445110 commit 09a4d2bCopy full SHA for 09a4d2b
src/queries.js
@@ -190,6 +190,7 @@ const mergeExtendedContributions = xs => {
190
labels.forEach(label => p.labels.add(label))
191
}
192
p.count += x.count
193
+ p.titles.push(x.title)
194
} else {
195
m.set(key, {
196
// Poor man's clone
@@ -198,7 +199,8 @@ const mergeExtendedContributions = xs => {
198
199
url: x.author.url,
200
count: x.count,
201
email: x.author.email,
- labels: new Set(labels)
202
+ labels: new Set(labels),
203
+ titles: [x.title]
204
})
205
206
0 commit comments