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 37ddc99 commit 41c4489Copy full SHA for 41c4489
javascript/src/helpers.ts
@@ -365,10 +365,10 @@ export function formatCounts(
365
for (const status of STATUS_ORDER) {
366
const count = counts[status]
367
if (count) {
368
- builder.append(`${count} ${status.toLowerCase()}`, theme.status?.all?.[status])
369
if (!first) {
370
builder.append(', ')
371
}
+ builder.append(`${count} ${status.toLowerCase()}`, theme.status?.all?.[status])
372
first = false
373
374
0 commit comments