Skip to content

Commit 6d1b1e3

Browse files
committed
Fix wrong joined className.
1 parent f33a05a commit 6d1b1e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@
117117
var html = data.map(function (item) {
118118
return format(this.template, {
119119
firstLabelColor: item.labels.length ? '#' + item.labels[0].color : 'transparent',
120-
labelClasses: item.labels.map(this.renderLabelClass, this).join(''),
120+
labelClasses: item.labels.map(this.renderLabelClass, this).join(' '),
121121
labelElements: item.labels.map(this.renderLabelItem, this).join(''),
122122
title: escapeHTML(item.title),
123123
link: item.html_url,

0 commit comments

Comments
 (0)