Skip to content

Commit 41c4489

Browse files
committed
fix comma delimiting
1 parent 37ddc99 commit 41c4489

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

javascript/src/helpers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -365,10 +365,10 @@ export function formatCounts(
365365
for (const status of STATUS_ORDER) {
366366
const count = counts[status]
367367
if (count) {
368-
builder.append(`${count} ${status.toLowerCase()}`, theme.status?.all?.[status])
369368
if (!first) {
370369
builder.append(', ')
371370
}
371+
builder.append(`${count} ${status.toLowerCase()}`, theme.status?.all?.[status])
372372
first = false
373373
}
374374
}

0 commit comments

Comments
 (0)